diff --git a/.github/kokoro/presubmit/nightly.cfg b/.github/kokoro/presubmit/nightly_test1.cfg
similarity index 96%
rename from .github/kokoro/presubmit/nightly.cfg
rename to .github/kokoro/presubmit/nightly_test1.cfg
index abf16949cb2..a88b7b8561c 100644
--- a/.github/kokoro/presubmit/nightly.cfg
+++ b/.github/kokoro/presubmit/nightly_test1.cfg
@@ -51,7 +51,7 @@ env_vars {
env_vars {
key: "VTR_TEST"
- value: "vtr_reg_nightly"
+ value: "vtr_reg_nightly_test1"
}
#Options for run_reg_test.py
@@ -63,5 +63,5 @@ env_vars {
env_vars {
key: "NUM_CORES"
- value: "3"
+ value: "8"
}
diff --git a/.github/kokoro/presubmit/nightly_test2.cfg b/.github/kokoro/presubmit/nightly_test2.cfg
new file mode 100644
index 00000000000..7754ca0ff81
--- /dev/null
+++ b/.github/kokoro/presubmit/nightly_test2.cfg
@@ -0,0 +1,67 @@
+# Format: //devtools/kokoro/config/proto/build.proto
+
+build_file: "vtr-verilog-to-routing/.github/kokoro/run-vtr.sh"
+
+# 72 hours
+timeout_mins: 4320
+
+action {
+ define_artifacts {
+ # File types
+ regex: "**/*.out"
+ regex: "**/vpr_stdout.log"
+ regex: "**/parse_results.txt"
+ regex: "**/qor_results.txt"
+ regex: "**/pack.log"
+ regex: "**/place.log"
+ regex: "**/route.log"
+ regex: "**/*_qor.csv"
+ regex: "**/*.out.gz"
+ regex: "**/vpr_stdout.log.gz"
+ regex: "**/parse_results.txt.gz"
+ regex: "**/qor_results.txt.gz"
+ regex: "**/pack.log.gz"
+ regex: "**/place.log.gz"
+ regex: "**/route.log.gz"
+ regex: "**/*_qor.csv.gz"
+ strip_prefix: "github/vtr-verilog-to-routing/"
+ }
+}
+
+env_vars {
+ key: "KOKORO_TYPE"
+ value: "presubmit"
+}
+
+env_vars {
+ key: "KOKORO_DIR"
+ value: "vtr-verilog-to-routing"
+}
+
+env_vars {
+ key: "VTR_DIR"
+ value: "vtr-verilog-to-routing"
+}
+
+#Use default build configuration
+env_vars {
+ key: "VTR_CMAKE_PARAMS"
+ value: ""
+}
+
+env_vars {
+ key: "VTR_TEST"
+ value: "vtr_reg_nightly_test2"
+}
+
+#Options for run_reg_test.py
+# -show_failures: show tool failures in main log output
+env_vars {
+ key: "VTR_TEST_OPTIONS"
+ value: "-show_failures"
+}
+
+env_vars {
+ key: "NUM_CORES"
+ value: "8"
+}
diff --git a/.github/kokoro/presubmit/nightly_test3.cfg b/.github/kokoro/presubmit/nightly_test3.cfg
new file mode 100644
index 00000000000..82fd5719bbb
--- /dev/null
+++ b/.github/kokoro/presubmit/nightly_test3.cfg
@@ -0,0 +1,67 @@
+# Format: //devtools/kokoro/config/proto/build.proto
+
+build_file: "vtr-verilog-to-routing/.github/kokoro/run-vtr.sh"
+
+# 72 hours
+timeout_mins: 4320
+
+action {
+ define_artifacts {
+ # File types
+ regex: "**/*.out"
+ regex: "**/vpr_stdout.log"
+ regex: "**/parse_results.txt"
+ regex: "**/qor_results.txt"
+ regex: "**/pack.log"
+ regex: "**/place.log"
+ regex: "**/route.log"
+ regex: "**/*_qor.csv"
+ regex: "**/*.out.gz"
+ regex: "**/vpr_stdout.log.gz"
+ regex: "**/parse_results.txt.gz"
+ regex: "**/qor_results.txt.gz"
+ regex: "**/pack.log.gz"
+ regex: "**/place.log.gz"
+ regex: "**/route.log.gz"
+ regex: "**/*_qor.csv.gz"
+ strip_prefix: "github/vtr-verilog-to-routing/"
+ }
+}
+
+env_vars {
+ key: "KOKORO_TYPE"
+ value: "presubmit"
+}
+
+env_vars {
+ key: "KOKORO_DIR"
+ value: "vtr-verilog-to-routing"
+}
+
+env_vars {
+ key: "VTR_DIR"
+ value: "vtr-verilog-to-routing"
+}
+
+#Use default build configuration
+env_vars {
+ key: "VTR_CMAKE_PARAMS"
+ value: ""
+}
+
+env_vars {
+ key: "VTR_TEST"
+ value: "vtr_reg_nightly_test3"
+}
+
+#Options for run_reg_test.py
+# -show_failures: show tool failures in main log output
+env_vars {
+ key: "VTR_TEST_OPTIONS"
+ value: "-show_failures"
+}
+
+env_vars {
+ key: "NUM_CORES"
+ value: "8"
+}
diff --git a/.github/kokoro/steps/vtr-test.sh b/.github/kokoro/steps/vtr-test.sh
index 91b60b6b54e..067ed0c857f 100644
--- a/.github/kokoro/steps/vtr-test.sh
+++ b/.github/kokoro/steps/vtr-test.sh
@@ -69,7 +69,10 @@ find vtr_flow/benchmarks/titan_blif/ -type f -not -name 'README.*' -delete
find . -type f -regex ".*\.tar\.\(gz\|xz\)" -delete
#Gzip output files from vtr_reg_nightly tests to lower working directory disk space
-find vtr_flow/tasks/regression_tests/vtr_reg_nightly/ -type f -print0 | xargs -0 -P $(nproc) gzip
+find vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/ -type f -print0 | xargs -0 -P $(nproc) gzip
+find vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/ -type f -print0 | xargs -0 -P $(nproc) gzip
+find vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/ -type f -print0 | xargs -0 -P $(nproc) gzip
+
# Make sure working directory doesn't exceed disk space limit!
echo "Working directory size: $(du -sh)"
diff --git a/README.developers.md b/README.developers.md
index 638803bc406..f8f7797386f 100644
--- a/README.developers.md
+++ b/README.developers.md
@@ -754,12 +754,12 @@ There may be times when a regression test fails its QoR test because its golden_
2. Next, generate new golden reference results using `parse_vtr_task.py` and the `-create_golden` option.
```shell
- $ ../scripts/parse_vtr_task.py regression_tests/vtr_reg_nightly/vtr_ex_test -create_golden
+ $ ../scripts/python_libs/vtr/parse_vtr_task.py regression_tests/vtr_reg_nightly/vtr_ex_test -create_golden
```
3. Lastly, check that the results match with the `-check_golden` option
```shell
- $ ../scripts/parse_vtr_task.py regression_tests/vtr_reg_nightly/vtr_ex_test -check_golden
+ $ ../scripts/python_libs/vtr/parse_vtr_task.py regression_tests/vtr_reg_nightly/vtr_ex_test -check_golden
```
Once the `-check_golden` command passes, the changes to the golden result can be committed so that the reg test will pass in future runs of vtr_reg_nightly.
diff --git a/vtr_flow/arch/timing/fixed_size/fixed_k6_N8_gate_boost_0.2V_22nm.xml b/vtr_flow/arch/timing/fixed_size/fixed_k6_N8_gate_boost_0.2V_22nm.xml
index 5e4ce7bd1eb..df0d18d57f2 100755
--- a/vtr_flow/arch/timing/fixed_size/fixed_k6_N8_gate_boost_0.2V_22nm.xml
+++ b/vtr_flow/arch/timing/fixed_size/fixed_k6_N8_gate_boost_0.2V_22nm.xml
@@ -132,7 +132,7 @@ Scaling assumptions from 40nm to 22nm: delay constant area drop (22/40)^2 but si
-
+
@@ -144,7 +144,7 @@ Scaling assumptions from 40nm to 22nm: delay constant area drop (22/40)^2 but si
-
+
diff --git a/vtr_flow/arch/timing/fixed_size/fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml b/vtr_flow/arch/timing/fixed_size/fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml
index cd7eb1a867a..4e0134b086f 100755
--- a/vtr_flow/arch/timing/fixed_size/fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml
+++ b/vtr_flow/arch/timing/fixed_size/fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml
@@ -156,7 +156,7 @@ Each 2-to-1 mux adds 6 MWTAs for SRAM cell.
-
+
@@ -168,7 +168,7 @@ Each 2-to-1 mux adds 6 MWTAs for SRAM cell.
-
+
diff --git a/vtr_flow/arch/timing/fixed_size/fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml b/vtr_flow/arch/timing/fixed_size/fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml
index bb0e36420b5..ea4f169c28e 100755
--- a/vtr_flow/arch/timing/fixed_size/fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml
+++ b/vtr_flow/arch/timing/fixed_size/fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml
@@ -159,7 +159,7 @@ Each 2-to-1 mux adds 6 MWTAs for SRAM cell.
-
+
@@ -171,7 +171,7 @@ Each 2-to-1 mux adds 6 MWTAs for SRAM cell.
-
+
diff --git a/vtr_flow/arch/timing/fixed_size/fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml b/vtr_flow/arch/timing/fixed_size/fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml
index d8835fba6f2..a5e70613c90 100755
--- a/vtr_flow/arch/timing/fixed_size/fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml
+++ b/vtr_flow/arch/timing/fixed_size/fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml
@@ -156,7 +156,7 @@ Each 2-to-1 mux adds 6 MWTAs for SRAM cell.
-
+
@@ -168,7 +168,7 @@ Each 2-to-1 mux adds 6 MWTAs for SRAM cell.
-
+
diff --git a/vtr_flow/arch/timing/fixed_size/fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml b/vtr_flow/arch/timing/fixed_size/fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml
index 191304bbf91..ff4d57cfac1 100755
--- a/vtr_flow/arch/timing/fixed_size/fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml
+++ b/vtr_flow/arch/timing/fixed_size/fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml
@@ -158,7 +158,7 @@ Each 2-to-1 mux adds 6 MWTAs for SRAM cell.
-
+
@@ -170,7 +170,7 @@ Each 2-to-1 mux adds 6 MWTAs for SRAM cell.
-
+
diff --git a/vtr_flow/arch/timing/fixed_size/fixed_k6_frac_2ripple_N8_22nm.xml b/vtr_flow/arch/timing/fixed_size/fixed_k6_frac_2ripple_N8_22nm.xml
index 54b08daf89b..ac7f539ec68 100644
--- a/vtr_flow/arch/timing/fixed_size/fixed_k6_frac_2ripple_N8_22nm.xml
+++ b/vtr_flow/arch/timing/fixed_size/fixed_k6_frac_2ripple_N8_22nm.xml
@@ -117,7 +117,8 @@ Each 2-to-1 mux adds 6 MWTAs for SRAM cell.
clb.O clb.I1[4:0] clb.I2[4:0] clb.I3[4:0] clb.I4[4:0] clb.clk
- clb.O clb.I1[9:5] clb.I2[9:5] clb.I3[9:5] clb.I4[9:5]
+ clb.O clb.I1[9:5] clb.I2[9:5] clb.I3[9:5] clb.I4[9:5] clb.cout
+ clb.cin
@@ -153,7 +154,7 @@ Each 2-to-1 mux adds 6 MWTAs for SRAM cell.
-
+
@@ -165,7 +166,7 @@ Each 2-to-1 mux adds 6 MWTAs for SRAM cell.
-
+
diff --git a/vtr_flow/arch/timing/fixed_size/fixed_k6_frac_2uripple_N8_22nm.xml b/vtr_flow/arch/timing/fixed_size/fixed_k6_frac_2uripple_N8_22nm.xml
index c8d6426c267..b9e761548ce 100644
--- a/vtr_flow/arch/timing/fixed_size/fixed_k6_frac_2uripple_N8_22nm.xml
+++ b/vtr_flow/arch/timing/fixed_size/fixed_k6_frac_2uripple_N8_22nm.xml
@@ -112,7 +112,8 @@ Scaling assumptions from 40nm to 22nm: delay constant area drop (22/40)^2 but si
clb.O clb.I1[4:0] clb.I2[4:0] clb.I3[4:0] clb.I4[4:0] clb.clk
- clb.O clb.I1[9:5] clb.I2[9:5] clb.I3[9:5] clb.I4[9:5]
+ clb.O clb.I1[9:5] clb.I2[9:5] clb.I3[9:5] clb.I4[9:5] clb.cout
+ clb.cin
@@ -148,7 +149,7 @@ Scaling assumptions from 40nm to 22nm: delay constant area drop (22/40)^2 but si
-
+
@@ -160,7 +161,7 @@ Scaling assumptions from 40nm to 22nm: delay constant area drop (22/40)^2 but si
-
+
diff --git a/vtr_flow/arch/timing/fixed_size/fixed_k6_frac_N8_22nm.xml b/vtr_flow/arch/timing/fixed_size/fixed_k6_frac_N8_22nm.xml
index fb6ced886a4..ab8bc930c77 100644
--- a/vtr_flow/arch/timing/fixed_size/fixed_k6_frac_N8_22nm.xml
+++ b/vtr_flow/arch/timing/fixed_size/fixed_k6_frac_N8_22nm.xml
@@ -132,7 +132,7 @@ Scaling assumptions from 40nm to 22nm: delay constant area drop (22/40)^2 but si
-
+
@@ -144,7 +144,7 @@ Scaling assumptions from 40nm to 22nm: delay constant area drop (22/40)^2 but si
-
+
diff --git a/vtr_flow/arch/timing/fixed_size/fixed_k6_frac_ripple_N8_22nm.xml b/vtr_flow/arch/timing/fixed_size/fixed_k6_frac_ripple_N8_22nm.xml
index c5ba6c1bcae..4ae3a253147 100644
--- a/vtr_flow/arch/timing/fixed_size/fixed_k6_frac_ripple_N8_22nm.xml
+++ b/vtr_flow/arch/timing/fixed_size/fixed_k6_frac_ripple_N8_22nm.xml
@@ -112,7 +112,8 @@ Scaling assumptions from 40nm to 22nm: delay constant area drop (22/40)^2 but si
clb.O clb.I1[4:0] clb.I2[4:0] clb.I3[4:0] clb.I4[4:0] clb.clk
- clb.O clb.I1[9:5] clb.I2[9:5] clb.I3[9:5] clb.I4[9:5]
+ clb.O clb.I1[9:5] clb.I2[9:5] clb.I3[9:5] clb.I4[9:5] clb.cout
+ clb.cin
@@ -148,7 +149,7 @@ Scaling assumptions from 40nm to 22nm: delay constant area drop (22/40)^2 but si
-
+
@@ -160,7 +161,7 @@ Scaling assumptions from 40nm to 22nm: delay constant area drop (22/40)^2 but si
-
+
diff --git a/vtr_flow/arch/timing/fixed_size/fixed_k6_frac_uripple_N8_22nm.xml b/vtr_flow/arch/timing/fixed_size/fixed_k6_frac_uripple_N8_22nm.xml
index 86cc65a5fd3..a6c900ffc49 100644
--- a/vtr_flow/arch/timing/fixed_size/fixed_k6_frac_uripple_N8_22nm.xml
+++ b/vtr_flow/arch/timing/fixed_size/fixed_k6_frac_uripple_N8_22nm.xml
@@ -112,7 +112,8 @@ Scaling assumptions from 40nm to 22nm: delay constant area drop (22/40)^2 but si
clb.O clb.I1[4:0] clb.I2[4:0] clb.I3[4:0] clb.I4[4:0] clb.clk
- clb.O clb.I1[9:5] clb.I2[9:5] clb.I3[9:5] clb.I4[9:5]
+ clb.O clb.I1[9:5] clb.I2[9:5] clb.I3[9:5] clb.I4[9:5] clb.cout
+ clb.cin
@@ -148,7 +149,7 @@ Scaling assumptions from 40nm to 22nm: delay constant area drop (22/40)^2 but si
-
+
@@ -160,7 +161,7 @@ Scaling assumptions from 40nm to 22nm: delay constant area drop (22/40)^2 but si
-
+
diff --git a/vtr_flow/arch/timing/fixed_size/fixed_nointerclb_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml b/vtr_flow/arch/timing/fixed_size/fixed_nointerclb_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml
index 7fabe02d1bc..922dd391322 100755
--- a/vtr_flow/arch/timing/fixed_size/fixed_nointerclb_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml
+++ b/vtr_flow/arch/timing/fixed_size/fixed_nointerclb_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml
@@ -154,7 +154,7 @@ Each 2-to-1 mux adds 6 MWTAs for SRAM cell.
-
+
@@ -166,7 +166,7 @@ Each 2-to-1 mux adds 6 MWTAs for SRAM cell.
-
+
diff --git a/vtr_flow/arch/timing/fixed_size/fixed_nointerclb_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml b/vtr_flow/arch/timing/fixed_size/fixed_nointerclb_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml
index 769a4486681..32afaa9469c 100755
--- a/vtr_flow/arch/timing/fixed_size/fixed_nointerclb_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml
+++ b/vtr_flow/arch/timing/fixed_size/fixed_nointerclb_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml
@@ -157,7 +157,7 @@ Each 2-to-1 mux adds 6 MWTAs for SRAM cell.
-
+
@@ -169,7 +169,7 @@ Each 2-to-1 mux adds 6 MWTAs for SRAM cell.
-
+
diff --git a/vtr_flow/arch/timing/fixed_size/fixed_nointerclb_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml b/vtr_flow/arch/timing/fixed_size/fixed_nointerclb_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml
index 0299a404e11..89aa7e4ac62 100755
--- a/vtr_flow/arch/timing/fixed_size/fixed_nointerclb_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml
+++ b/vtr_flow/arch/timing/fixed_size/fixed_nointerclb_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml
@@ -154,7 +154,7 @@ Each 2-to-1 mux adds 6 MWTAs for SRAM cell.
-
+
@@ -166,7 +166,7 @@ Each 2-to-1 mux adds 6 MWTAs for SRAM cell.
-
+
diff --git a/vtr_flow/arch/timing/fixed_size/fixed_nointerclb_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml b/vtr_flow/arch/timing/fixed_size/fixed_nointerclb_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml
index 75f434e5276..ab0a5d6dad2 100755
--- a/vtr_flow/arch/timing/fixed_size/fixed_nointerclb_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml
+++ b/vtr_flow/arch/timing/fixed_size/fixed_nointerclb_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml
@@ -156,7 +156,7 @@ Each 2-to-1 mux adds 6 MWTAs for SRAM cell.
-
+
@@ -168,7 +168,7 @@ Each 2-to-1 mux adds 6 MWTAs for SRAM cell.
-
+
diff --git a/vtr_flow/arch/timing/fraclut_carrychain/k6_frac_2ripple_N8_22nm.xml b/vtr_flow/arch/timing/fraclut_carrychain/k6_frac_2ripple_N8_22nm.xml
index cd1251dc842..fa4fd7c6a5f 100644
--- a/vtr_flow/arch/timing/fraclut_carrychain/k6_frac_2ripple_N8_22nm.xml
+++ b/vtr_flow/arch/timing/fraclut_carrychain/k6_frac_2ripple_N8_22nm.xml
@@ -117,7 +117,8 @@ Each 2-to-1 mux adds 6 MWTAs for SRAM cell.
clb.O clb.I1[4:0] clb.I2[4:0] clb.I3[4:0] clb.I4[4:0] clb.clk
- clb.O clb.I1[9:5] clb.I2[9:5] clb.I3[9:5] clb.I4[9:5]
+ clb.O clb.I1[9:5] clb.I2[9:5] clb.I3[9:5] clb.I4[9:5] clb.cout
+ clb.cin
diff --git a/vtr_flow/arch/timing/fraclut_carrychain/k6_frac_2uripple_N8_22nm.xml b/vtr_flow/arch/timing/fraclut_carrychain/k6_frac_2uripple_N8_22nm.xml
index c095d0b7e87..65da8c37608 100644
--- a/vtr_flow/arch/timing/fraclut_carrychain/k6_frac_2uripple_N8_22nm.xml
+++ b/vtr_flow/arch/timing/fraclut_carrychain/k6_frac_2uripple_N8_22nm.xml
@@ -112,7 +112,8 @@ Scaling assumptions from 40nm to 22nm: delay constant area drop (22/40)^2 but si
clb.O clb.I1[4:0] clb.I2[4:0] clb.I3[4:0] clb.I4[4:0] clb.clk
- clb.O clb.I1[9:5] clb.I2[9:5] clb.I3[9:5] clb.I4[9:5]
+ clb.O clb.I1[9:5] clb.I2[9:5] clb.I3[9:5] clb.I4[9:5] clb.cout
+ clb.cin
diff --git a/vtr_flow/arch/timing/fraclut_carrychain/k6_frac_ripple_N8_22nm.xml b/vtr_flow/arch/timing/fraclut_carrychain/k6_frac_ripple_N8_22nm.xml
index e38a7f3df64..b98f9a9e564 100644
--- a/vtr_flow/arch/timing/fraclut_carrychain/k6_frac_ripple_N8_22nm.xml
+++ b/vtr_flow/arch/timing/fraclut_carrychain/k6_frac_ripple_N8_22nm.xml
@@ -112,7 +112,8 @@ Scaling assumptions from 40nm to 22nm: delay constant area drop (22/40)^2 but si
clb.O clb.I1[4:0] clb.I2[4:0] clb.I3[4:0] clb.I4[4:0] clb.clk
- clb.O clb.I1[9:5] clb.I2[9:5] clb.I3[9:5] clb.I4[9:5]
+ clb.O clb.I1[9:5] clb.I2[9:5] clb.I3[9:5] clb.I4[9:5] clb.cout
+ clb.cin
diff --git a/vtr_flow/arch/timing/fraclut_carrychain/k6_frac_uripple_N8_22nm.xml b/vtr_flow/arch/timing/fraclut_carrychain/k6_frac_uripple_N8_22nm.xml
index de6e13aca41..7ea63ae64fe 100644
--- a/vtr_flow/arch/timing/fraclut_carrychain/k6_frac_uripple_N8_22nm.xml
+++ b/vtr_flow/arch/timing/fraclut_carrychain/k6_frac_uripple_N8_22nm.xml
@@ -112,7 +112,8 @@ Scaling assumptions from 40nm to 22nm: delay constant area drop (22/40)^2 but si
clb.O clb.I1[4:0] clb.I2[4:0] clb.I3[4:0] clb.I4[4:0] clb.clk
- clb.O clb.I1[9:5] clb.I2[9:5] clb.I3[9:5] clb.I4[9:5]
+ clb.O clb.I1[9:5] clb.I2[9:5] clb.I3[9:5] clb.I4[9:5] clb.cout
+ clb.cin
diff --git a/vtr_flow/benchmarks/arithmetic/FIR_filters/verilog/generate_fir.c++ b/vtr_flow/benchmarks/arithmetic/FIR_filters/verilog/generate_fir.c++
index da149951f8b..dda509121af 100644
--- a/vtr_flow/benchmarks/arithmetic/FIR_filters/verilog/generate_fir.c++
+++ b/vtr_flow/benchmarks/arithmetic/FIR_filters/verilog/generate_fir.c++
@@ -325,13 +325,13 @@ int main(int argc, char const *argv[]) {
string level_output_wires = make_output_wire_name(level);
string level_input_wires = make_output_wire_name(level-1);
- cout << " // ************************* LEVEL "< 0) {
- cout << " // ********* Byes ******** \\\\\n";
+ cout << " // ********* Byes ******** \\\n";
size_t offset = -1;
if (level == 0) {
offset = LEVEL_WIDTH_WO_EXTRAS; // in L0 the bye is the center one
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_10.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_10.v
index 81ced68b2b2..249658bc8af 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_10.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_10.v
@@ -123,7 +123,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -162,8 +162,8 @@ module fir (
// (5 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -202,7 +202,7 @@ module fir (
// (5 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -221,7 +221,7 @@ module fir (
// (2 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_4(
.dataa (L1_mult_wires_4),
.result(L1_output_wires_2)
@@ -229,7 +229,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
@@ -241,7 +241,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_2(
.dataa (L1_output_wires_2),
.result(L2_output_wires_1)
@@ -249,7 +249,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
adder_with_1_reg L3_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_11.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_11.v
index 5bb6e2fbeba..cb239aa48e5 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_11.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_11.v
@@ -127,7 +127,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -167,7 +167,7 @@ module fir (
// (5 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_5(
.dataa (INPUT_PIPELINE_REG_5),
.result(L0_output_wires_5)
@@ -175,8 +175,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -222,7 +222,7 @@ module fir (
// (6 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -247,7 +247,7 @@ module fir (
// (3 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
@@ -259,7 +259,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_2(
.dataa (L1_output_wires_2),
.result(L2_output_wires_1)
@@ -267,7 +267,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
adder_with_1_reg L3_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_12.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_12.v
index d2e1640b9cd..86216ea79a2 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_12.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_12.v
@@ -129,7 +129,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -175,8 +175,8 @@ module fir (
// (6 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -222,7 +222,7 @@ module fir (
// (6 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -247,7 +247,7 @@ module fir (
// (3 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
@@ -259,7 +259,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_2(
.dataa (L1_output_wires_2),
.result(L2_output_wires_1)
@@ -267,7 +267,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
adder_with_1_reg L3_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_13.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_13.v
index 4b287504c29..0e9c3a91c78 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_13.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_13.v
@@ -133,7 +133,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -180,7 +180,7 @@ module fir (
// (6 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_6(
.dataa (INPUT_PIPELINE_REG_6),
.result(L0_output_wires_6)
@@ -188,8 +188,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -242,7 +242,7 @@ module fir (
// (7 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -268,7 +268,7 @@ module fir (
// (3 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_6(
.dataa (L1_mult_wires_6),
.result(L1_output_wires_3)
@@ -276,7 +276,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
@@ -294,7 +294,7 @@ module fir (
// (2 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
adder_with_1_reg L3_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_14.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_14.v
index 86208c4d19e..c915f65fcde 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_14.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_14.v
@@ -135,7 +135,8 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
+
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -188,8 +189,9 @@ module fir (
// (7 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
+
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -242,7 +244,8 @@ module fir (
// (7 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
+
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -268,7 +271,8 @@ module fir (
// (3 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
+
one_register L1_byereg_for_6(
.dataa (L1_mult_wires_6),
.result(L1_output_wires_3)
@@ -276,31 +280,33 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
+
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
adder_with_1_reg L2_adder_0and1(
- .dataa (L1_output_wires_0),
- .datab (L1_output_wires_1),
- .result(L2_output_wires_0)
+ .dataa (L1_output_wires_0),
+ .datab (L1_output_wires_1),
+ .result (L2_output_wires_0)
);
adder_with_1_reg L2_adder_2and3(
.dataa (L1_output_wires_2),
.datab (L1_output_wires_3),
- .result(L2_output_wires_1)
+ .result (L2_output_wires_1)
);
// (2 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
+
wire [dw-1:0] L3_output_wires_0;
adder_with_1_reg L3_adder_0and1(
- .dataa (L2_output_wires_0),
- .datab (L2_output_wires_1),
- .result(L3_output_wires_0)
+ .dataa (L2_output_wires_0),
+ .datab (L2_output_wires_1),
+ .result (L3_output_wires_0)
);
// (1 main tree Adders)
@@ -435,9 +441,9 @@ module adder_with_1_reg (
dataa,
datab,
result);
+ input clk;
+ input clk_ena;
- input clk;
- input clk_ena;
input [17:0] dataa;
input [17:0] datab;
output [17:0] result;
@@ -451,9 +457,9 @@ module multiplier_with_reg (
dataa,
datab,
result);
+ input clk;
+ input clk_ena;
- input clk;
- input clk_ena;
input [17:0] dataa;
input [17:0] datab;
output [17:0] result;
@@ -466,9 +472,8 @@ endmodule
module one_register (
dataa,
result);
-
- input clk;
- input clk_ena;
+ input clk;
+ input clk_ena;
input [17:0] dataa;
output [17:0] result;
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_15.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_15.v
index 9ab1f4116b1..85a725d535a 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_15.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_15.v
@@ -139,7 +139,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -193,7 +193,7 @@ module fir (
// (7 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_7(
.dataa (INPUT_PIPELINE_REG_7),
.result(L0_output_wires_7)
@@ -201,8 +201,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -262,7 +262,7 @@ module fir (
// (8 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -294,7 +294,7 @@ module fir (
// (4 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
@@ -312,7 +312,7 @@ module fir (
// (2 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
adder_with_1_reg L3_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_16.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_16.v
index e38d485e6cf..15fdb30a1cc 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_16.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_16.v
@@ -141,7 +141,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -201,8 +201,8 @@ module fir (
// (8 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -262,7 +262,7 @@ module fir (
// (8 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -294,7 +294,7 @@ module fir (
// (4 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
@@ -312,7 +312,7 @@ module fir (
// (2 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
adder_with_1_reg L3_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_17.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_17.v
index d4b8589239e..c70adc9b302 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_17.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_17.v
@@ -145,7 +145,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -206,7 +206,7 @@ module fir (
// (8 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_8(
.dataa (INPUT_PIPELINE_REG_8),
.result(L0_output_wires_8)
@@ -214,8 +214,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -282,7 +282,7 @@ module fir (
// (9 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -315,7 +315,7 @@ module fir (
// (4 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_8(
.dataa (L1_mult_wires_8),
.result(L1_output_wires_4)
@@ -323,7 +323,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -342,7 +342,7 @@ module fir (
// (2 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_4(
.dataa (L1_output_wires_4),
.result(L2_output_wires_2)
@@ -350,7 +350,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
@@ -362,7 +362,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_2(
.dataa (L2_output_wires_2),
.result(L3_output_wires_1)
@@ -370,7 +370,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
adder_with_1_reg L4_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_18.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_18.v
index 6a60ec99aec..21f55813a0f 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_18.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_18.v
@@ -147,7 +147,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -214,8 +214,8 @@ module fir (
// (9 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -282,7 +282,7 @@ module fir (
// (9 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -315,7 +315,7 @@ module fir (
// (4 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_8(
.dataa (L1_mult_wires_8),
.result(L1_output_wires_4)
@@ -323,7 +323,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -342,7 +342,7 @@ module fir (
// (2 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_4(
.dataa (L1_output_wires_4),
.result(L2_output_wires_2)
@@ -350,7 +350,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
@@ -362,7 +362,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_2(
.dataa (L2_output_wires_2),
.result(L3_output_wires_1)
@@ -370,7 +370,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
adder_with_1_reg L4_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_19.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_19.v
index d1f42b80798..746bbeff84f 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_19.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_19.v
@@ -151,7 +151,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -219,7 +219,7 @@ module fir (
// (9 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_9(
.dataa (INPUT_PIPELINE_REG_9),
.result(L0_output_wires_9)
@@ -227,8 +227,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -302,7 +302,7 @@ module fir (
// (10 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -341,7 +341,7 @@ module fir (
// (5 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -360,7 +360,7 @@ module fir (
// (2 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_4(
.dataa (L1_output_wires_4),
.result(L2_output_wires_2)
@@ -368,7 +368,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
@@ -380,7 +380,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_2(
.dataa (L2_output_wires_2),
.result(L3_output_wires_1)
@@ -388,7 +388,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
adder_with_1_reg L4_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_20.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_20.v
index e362dd9c148..4c3d9b486ae 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_20.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_20.v
@@ -153,7 +153,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -227,8 +227,8 @@ module fir (
// (10 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -302,7 +302,7 @@ module fir (
// (10 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -341,7 +341,7 @@ module fir (
// (5 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -360,7 +360,7 @@ module fir (
// (2 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_4(
.dataa (L1_output_wires_4),
.result(L2_output_wires_2)
@@ -368,7 +368,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
@@ -380,7 +380,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_2(
.dataa (L2_output_wires_2),
.result(L3_output_wires_1)
@@ -388,7 +388,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
adder_with_1_reg L4_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_21.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_21.v
index a0cc79bb8f0..25893eab9d8 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_21.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_21.v
@@ -157,7 +157,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -232,7 +232,7 @@ module fir (
// (10 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_10(
.dataa (INPUT_PIPELINE_REG_10),
.result(L0_output_wires_10)
@@ -240,8 +240,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -322,7 +322,7 @@ module fir (
// (11 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -362,7 +362,7 @@ module fir (
// (5 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_10(
.dataa (L1_mult_wires_10),
.result(L1_output_wires_5)
@@ -370,7 +370,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -395,7 +395,7 @@ module fir (
// (3 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
@@ -407,7 +407,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_2(
.dataa (L2_output_wires_2),
.result(L3_output_wires_1)
@@ -415,7 +415,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
adder_with_1_reg L4_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_22.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_22.v
index 59740eacbea..e54f86adf6c 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_22.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_22.v
@@ -159,7 +159,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -240,8 +240,8 @@ module fir (
// (11 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -322,7 +322,7 @@ module fir (
// (11 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -362,7 +362,7 @@ module fir (
// (5 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_10(
.dataa (L1_mult_wires_10),
.result(L1_output_wires_5)
@@ -370,7 +370,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -395,7 +395,7 @@ module fir (
// (3 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
@@ -407,7 +407,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_2(
.dataa (L2_output_wires_2),
.result(L3_output_wires_1)
@@ -415,7 +415,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
adder_with_1_reg L4_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_23.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_23.v
index ab60e2b5447..f203802662d 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_23.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_23.v
@@ -163,7 +163,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -245,7 +245,7 @@ module fir (
// (11 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_11(
.dataa (INPUT_PIPELINE_REG_11),
.result(L0_output_wires_11)
@@ -253,8 +253,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -342,7 +342,7 @@ module fir (
// (12 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -388,7 +388,7 @@ module fir (
// (6 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -413,7 +413,7 @@ module fir (
// (3 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
@@ -425,7 +425,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_2(
.dataa (L2_output_wires_2),
.result(L3_output_wires_1)
@@ -433,7 +433,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
adder_with_1_reg L4_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_24.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_24.v
index f7ef8144d70..f7a734d71f5 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_24.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_24.v
@@ -165,7 +165,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -253,8 +253,8 @@ module fir (
// (12 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -342,7 +342,7 @@ module fir (
// (12 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -388,7 +388,7 @@ module fir (
// (6 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -413,7 +413,7 @@ module fir (
// (3 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
@@ -425,7 +425,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_2(
.dataa (L2_output_wires_2),
.result(L3_output_wires_1)
@@ -433,7 +433,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
adder_with_1_reg L4_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_25.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_25.v
index 394b6ca7242..867be953169 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_25.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_25.v
@@ -169,7 +169,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -258,7 +258,7 @@ module fir (
// (12 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_12(
.dataa (INPUT_PIPELINE_REG_12),
.result(L0_output_wires_12)
@@ -266,8 +266,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -362,7 +362,7 @@ module fir (
// (13 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -409,7 +409,7 @@ module fir (
// (6 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_12(
.dataa (L1_mult_wires_12),
.result(L1_output_wires_6)
@@ -417,7 +417,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -443,7 +443,7 @@ module fir (
// (3 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_6(
.dataa (L1_output_wires_6),
.result(L2_output_wires_3)
@@ -451,7 +451,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
@@ -469,7 +469,7 @@ module fir (
// (2 main tree Adders)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
adder_with_1_reg L4_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_26.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_26.v
index f49186eea03..64757c5345a 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_26.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_26.v
@@ -171,7 +171,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -266,8 +266,8 @@ module fir (
// (13 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -362,7 +362,7 @@ module fir (
// (13 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -409,7 +409,7 @@ module fir (
// (6 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_12(
.dataa (L1_mult_wires_12),
.result(L1_output_wires_6)
@@ -417,7 +417,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -443,7 +443,7 @@ module fir (
// (3 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_6(
.dataa (L1_output_wires_6),
.result(L2_output_wires_3)
@@ -451,7 +451,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
@@ -469,7 +469,7 @@ module fir (
// (2 main tree Adders)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
adder_with_1_reg L4_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_27.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_27.v
index e7c90e76d44..694d6a161ae 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_27.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_27.v
@@ -175,7 +175,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -271,7 +271,7 @@ module fir (
// (13 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_13(
.dataa (INPUT_PIPELINE_REG_13),
.result(L0_output_wires_13)
@@ -279,8 +279,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -382,7 +382,7 @@ module fir (
// (14 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -435,7 +435,7 @@ module fir (
// (7 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -461,7 +461,7 @@ module fir (
// (3 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_6(
.dataa (L1_output_wires_6),
.result(L2_output_wires_3)
@@ -469,7 +469,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
@@ -487,7 +487,7 @@ module fir (
// (2 main tree Adders)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
adder_with_1_reg L4_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_28.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_28.v
index 4ae331f3a09..007aca9e1b1 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_28.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_28.v
@@ -177,7 +177,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -279,8 +279,8 @@ module fir (
// (14 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -382,7 +382,7 @@ module fir (
// (14 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -435,7 +435,7 @@ module fir (
// (7 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -461,7 +461,7 @@ module fir (
// (3 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_6(
.dataa (L1_output_wires_6),
.result(L2_output_wires_3)
@@ -469,7 +469,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
@@ -487,7 +487,7 @@ module fir (
// (2 main tree Adders)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
adder_with_1_reg L4_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_29.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_29.v
index 8036a54714e..b17c4ccde22 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_29.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_29.v
@@ -181,7 +181,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -284,7 +284,7 @@ module fir (
// (14 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_14(
.dataa (INPUT_PIPELINE_REG_14),
.result(L0_output_wires_14)
@@ -292,8 +292,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -402,7 +402,7 @@ module fir (
// (15 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -456,7 +456,7 @@ module fir (
// (7 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_14(
.dataa (L1_mult_wires_14),
.result(L1_output_wires_7)
@@ -464,7 +464,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -496,7 +496,7 @@ module fir (
// (4 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
@@ -514,7 +514,7 @@ module fir (
// (2 main tree Adders)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
adder_with_1_reg L4_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_30.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_30.v
index b66dc9acd06..c9ac3210c0b 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_30.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_30.v
@@ -183,7 +183,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -292,8 +292,8 @@ module fir (
// (15 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -402,7 +402,7 @@ module fir (
// (15 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -456,7 +456,7 @@ module fir (
// (7 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_14(
.dataa (L1_mult_wires_14),
.result(L1_output_wires_7)
@@ -464,7 +464,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -496,7 +496,7 @@ module fir (
// (4 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
@@ -514,7 +514,7 @@ module fir (
// (2 main tree Adders)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
adder_with_1_reg L4_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_31.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_31.v
index 7771c6b5334..3247d1be08a 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_31.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_31.v
@@ -187,7 +187,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -297,7 +297,7 @@ module fir (
// (15 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_15(
.dataa (INPUT_PIPELINE_REG_15),
.result(L0_output_wires_15)
@@ -305,8 +305,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -422,7 +422,7 @@ module fir (
// (16 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -482,7 +482,7 @@ module fir (
// (8 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -514,7 +514,7 @@ module fir (
// (4 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
@@ -532,7 +532,7 @@ module fir (
// (2 main tree Adders)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
adder_with_1_reg L4_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_32.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_32.v
index 22be1cbe9b0..2e0ac33a6e1 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_32.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_32.v
@@ -189,7 +189,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -305,8 +305,8 @@ module fir (
// (16 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -422,7 +422,7 @@ module fir (
// (16 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -482,7 +482,7 @@ module fir (
// (8 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -514,7 +514,7 @@ module fir (
// (4 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
@@ -532,7 +532,7 @@ module fir (
// (2 main tree Adders)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
adder_with_1_reg L4_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_33.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_33.v
index 9f49d788150..a212b0bd271 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_33.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_33.v
@@ -193,7 +193,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -310,7 +310,7 @@ module fir (
// (16 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_16(
.dataa (INPUT_PIPELINE_REG_16),
.result(L0_output_wires_16)
@@ -318,8 +318,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -442,7 +442,7 @@ module fir (
// (17 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -503,7 +503,7 @@ module fir (
// (8 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_16(
.dataa (L1_mult_wires_16),
.result(L1_output_wires_8)
@@ -511,7 +511,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -544,7 +544,7 @@ module fir (
// (4 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_8(
.dataa (L1_output_wires_8),
.result(L2_output_wires_4)
@@ -552,7 +552,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -571,7 +571,7 @@ module fir (
// (2 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_4(
.dataa (L2_output_wires_4),
.result(L3_output_wires_2)
@@ -579,7 +579,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -591,7 +591,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L4_byereg_for_2(
.dataa (L3_output_wires_2),
.result(L4_output_wires_1)
@@ -599,7 +599,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_34.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_34.v
index e0ed2da69e8..9e26fa4c407 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_34.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_34.v
@@ -195,7 +195,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -318,8 +318,8 @@ module fir (
// (17 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -442,7 +442,7 @@ module fir (
// (17 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -503,7 +503,7 @@ module fir (
// (8 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_16(
.dataa (L1_mult_wires_16),
.result(L1_output_wires_8)
@@ -511,7 +511,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -544,7 +544,7 @@ module fir (
// (4 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_8(
.dataa (L1_output_wires_8),
.result(L2_output_wires_4)
@@ -552,7 +552,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -571,7 +571,7 @@ module fir (
// (2 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_4(
.dataa (L2_output_wires_4),
.result(L3_output_wires_2)
@@ -579,7 +579,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -591,7 +591,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L4_byereg_for_2(
.dataa (L3_output_wires_2),
.result(L4_output_wires_1)
@@ -599,7 +599,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_35.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_35.v
index c4b6bde2e9f..30806a44b8c 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_35.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_35.v
@@ -199,7 +199,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -323,7 +323,7 @@ module fir (
// (17 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_17(
.dataa (INPUT_PIPELINE_REG_17),
.result(L0_output_wires_17)
@@ -331,8 +331,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -462,7 +462,7 @@ module fir (
// (18 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -529,7 +529,7 @@ module fir (
// (9 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -562,7 +562,7 @@ module fir (
// (4 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_8(
.dataa (L1_output_wires_8),
.result(L2_output_wires_4)
@@ -570,7 +570,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -589,7 +589,7 @@ module fir (
// (2 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_4(
.dataa (L2_output_wires_4),
.result(L3_output_wires_2)
@@ -597,7 +597,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -609,7 +609,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L4_byereg_for_2(
.dataa (L3_output_wires_2),
.result(L4_output_wires_1)
@@ -617,7 +617,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_36.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_36.v
index f4b85854561..7899842f8ad 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_36.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_36.v
@@ -201,7 +201,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -331,8 +331,8 @@ module fir (
// (18 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -462,7 +462,7 @@ module fir (
// (18 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -529,7 +529,7 @@ module fir (
// (9 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -562,7 +562,7 @@ module fir (
// (4 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_8(
.dataa (L1_output_wires_8),
.result(L2_output_wires_4)
@@ -570,7 +570,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -589,7 +589,7 @@ module fir (
// (2 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_4(
.dataa (L2_output_wires_4),
.result(L3_output_wires_2)
@@ -597,7 +597,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -609,7 +609,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L4_byereg_for_2(
.dataa (L3_output_wires_2),
.result(L4_output_wires_1)
@@ -617,7 +617,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_37.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_37.v
index da0b7bde514..d2407271901 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_37.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_37.v
@@ -205,7 +205,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -336,7 +336,7 @@ module fir (
// (18 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_18(
.dataa (INPUT_PIPELINE_REG_18),
.result(L0_output_wires_18)
@@ -344,8 +344,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -482,7 +482,7 @@ module fir (
// (19 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -550,7 +550,7 @@ module fir (
// (9 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_18(
.dataa (L1_mult_wires_18),
.result(L1_output_wires_9)
@@ -558,7 +558,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -597,7 +597,7 @@ module fir (
// (5 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -616,7 +616,7 @@ module fir (
// (2 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_4(
.dataa (L2_output_wires_4),
.result(L3_output_wires_2)
@@ -624,7 +624,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -636,7 +636,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L4_byereg_for_2(
.dataa (L3_output_wires_2),
.result(L4_output_wires_1)
@@ -644,7 +644,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_38.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_38.v
index 61d27ff0140..e34d623cd69 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_38.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_38.v
@@ -207,7 +207,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -344,8 +344,8 @@ module fir (
// (19 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -482,7 +482,7 @@ module fir (
// (19 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -550,7 +550,7 @@ module fir (
// (9 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_18(
.dataa (L1_mult_wires_18),
.result(L1_output_wires_9)
@@ -558,7 +558,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -597,7 +597,7 @@ module fir (
// (5 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -616,7 +616,7 @@ module fir (
// (2 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_4(
.dataa (L2_output_wires_4),
.result(L3_output_wires_2)
@@ -624,7 +624,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -636,7 +636,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L4_byereg_for_2(
.dataa (L3_output_wires_2),
.result(L4_output_wires_1)
@@ -644,7 +644,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_39.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_39.v
index 1d6af80e320..54bb5fb630a 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_39.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_39.v
@@ -211,7 +211,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -349,7 +349,7 @@ module fir (
// (19 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_19(
.dataa (INPUT_PIPELINE_REG_19),
.result(L0_output_wires_19)
@@ -357,8 +357,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -502,7 +502,7 @@ module fir (
// (20 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -576,7 +576,7 @@ module fir (
// (10 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -615,7 +615,7 @@ module fir (
// (5 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -634,7 +634,7 @@ module fir (
// (2 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_4(
.dataa (L2_output_wires_4),
.result(L3_output_wires_2)
@@ -642,7 +642,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -654,7 +654,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L4_byereg_for_2(
.dataa (L3_output_wires_2),
.result(L4_output_wires_1)
@@ -662,7 +662,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_40.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_40.v
index e93c21c1566..d497bfe1488 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_40.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_40.v
@@ -213,7 +213,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -357,8 +357,8 @@ module fir (
// (20 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -502,7 +502,7 @@ module fir (
// (20 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -576,7 +576,7 @@ module fir (
// (10 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -615,7 +615,7 @@ module fir (
// (5 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -634,7 +634,7 @@ module fir (
// (2 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_4(
.dataa (L2_output_wires_4),
.result(L3_output_wires_2)
@@ -642,7 +642,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -654,7 +654,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L4_byereg_for_2(
.dataa (L3_output_wires_2),
.result(L4_output_wires_1)
@@ -662,7 +662,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_41.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_41.v
index 02498b25981..c7f44211906 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_41.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_41.v
@@ -217,7 +217,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -362,7 +362,7 @@ module fir (
// (20 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_20(
.dataa (INPUT_PIPELINE_REG_20),
.result(L0_output_wires_20)
@@ -370,8 +370,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -522,7 +522,7 @@ module fir (
// (21 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -597,7 +597,7 @@ module fir (
// (10 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_20(
.dataa (L1_mult_wires_20),
.result(L1_output_wires_10)
@@ -605,7 +605,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -645,7 +645,7 @@ module fir (
// (5 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_10(
.dataa (L1_output_wires_10),
.result(L2_output_wires_5)
@@ -653,7 +653,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -678,7 +678,7 @@ module fir (
// (3 main tree Adders)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -690,7 +690,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L4_byereg_for_2(
.dataa (L3_output_wires_2),
.result(L4_output_wires_1)
@@ -698,7 +698,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_42.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_42.v
index 2482ac0ff74..a43fc5523ea 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_42.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_42.v
@@ -219,7 +219,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -370,8 +370,8 @@ module fir (
// (21 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -522,7 +522,7 @@ module fir (
// (21 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -597,7 +597,7 @@ module fir (
// (10 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_20(
.dataa (L1_mult_wires_20),
.result(L1_output_wires_10)
@@ -605,7 +605,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -645,7 +645,7 @@ module fir (
// (5 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_10(
.dataa (L1_output_wires_10),
.result(L2_output_wires_5)
@@ -653,7 +653,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -678,7 +678,7 @@ module fir (
// (3 main tree Adders)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -690,7 +690,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L4_byereg_for_2(
.dataa (L3_output_wires_2),
.result(L4_output_wires_1)
@@ -698,7 +698,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_43.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_43.v
index 4cd88b878e2..2a3cd95a148 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_43.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_43.v
@@ -223,7 +223,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -375,7 +375,7 @@ module fir (
// (21 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_21(
.dataa (INPUT_PIPELINE_REG_21),
.result(L0_output_wires_21)
@@ -383,8 +383,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -542,7 +542,7 @@ module fir (
// (22 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -623,7 +623,7 @@ module fir (
// (11 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -663,7 +663,7 @@ module fir (
// (5 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_10(
.dataa (L1_output_wires_10),
.result(L2_output_wires_5)
@@ -671,7 +671,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -696,7 +696,7 @@ module fir (
// (3 main tree Adders)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -708,7 +708,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L4_byereg_for_2(
.dataa (L3_output_wires_2),
.result(L4_output_wires_1)
@@ -716,7 +716,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_44.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_44.v
index 8c4949de0f2..453ff3d5531 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_44.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_44.v
@@ -225,7 +225,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -383,8 +383,8 @@ module fir (
// (22 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -542,7 +542,7 @@ module fir (
// (22 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -623,7 +623,7 @@ module fir (
// (11 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -663,7 +663,7 @@ module fir (
// (5 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_10(
.dataa (L1_output_wires_10),
.result(L2_output_wires_5)
@@ -671,7 +671,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -696,7 +696,7 @@ module fir (
// (3 main tree Adders)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -708,7 +708,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L4_byereg_for_2(
.dataa (L3_output_wires_2),
.result(L4_output_wires_1)
@@ -716,7 +716,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_45.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_45.v
index a82f8815128..47d4041c822 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_45.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_45.v
@@ -229,7 +229,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -388,7 +388,7 @@ module fir (
// (22 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_22(
.dataa (INPUT_PIPELINE_REG_22),
.result(L0_output_wires_22)
@@ -396,8 +396,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -562,7 +562,7 @@ module fir (
// (23 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -644,7 +644,7 @@ module fir (
// (11 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_22(
.dataa (L1_mult_wires_22),
.result(L1_output_wires_11)
@@ -652,7 +652,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -698,7 +698,7 @@ module fir (
// (6 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -723,7 +723,7 @@ module fir (
// (3 main tree Adders)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -735,7 +735,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L4_byereg_for_2(
.dataa (L3_output_wires_2),
.result(L4_output_wires_1)
@@ -743,7 +743,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_46.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_46.v
index 066eb4acb85..f0cf11cdfd7 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_46.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_46.v
@@ -231,7 +231,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -396,8 +396,8 @@ module fir (
// (23 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -562,7 +562,7 @@ module fir (
// (23 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -644,7 +644,7 @@ module fir (
// (11 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_22(
.dataa (L1_mult_wires_22),
.result(L1_output_wires_11)
@@ -652,7 +652,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -698,7 +698,7 @@ module fir (
// (6 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -723,7 +723,7 @@ module fir (
// (3 main tree Adders)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -735,7 +735,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L4_byereg_for_2(
.dataa (L3_output_wires_2),
.result(L4_output_wires_1)
@@ -743,7 +743,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_47.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_47.v
index f0bffe6b29c..951c3fa6e74 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_47.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_47.v
@@ -235,7 +235,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -401,7 +401,7 @@ module fir (
// (23 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_23(
.dataa (INPUT_PIPELINE_REG_23),
.result(L0_output_wires_23)
@@ -409,8 +409,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -582,7 +582,7 @@ module fir (
// (24 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -670,7 +670,7 @@ module fir (
// (12 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -716,7 +716,7 @@ module fir (
// (6 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -741,7 +741,7 @@ module fir (
// (3 main tree Adders)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -753,7 +753,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L4_byereg_for_2(
.dataa (L3_output_wires_2),
.result(L4_output_wires_1)
@@ -761,7 +761,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_48.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_48.v
index 129db59cc43..57a6ac11bb4 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_48.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_48.v
@@ -237,7 +237,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -409,8 +409,8 @@ module fir (
// (24 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -582,7 +582,7 @@ module fir (
// (24 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -670,7 +670,7 @@ module fir (
// (12 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -716,7 +716,7 @@ module fir (
// (6 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -741,7 +741,7 @@ module fir (
// (3 main tree Adders)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -753,7 +753,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L4_byereg_for_2(
.dataa (L3_output_wires_2),
.result(L4_output_wires_1)
@@ -761,7 +761,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_49.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_49.v
index b79bbe17fd7..e80d606efdc 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_49.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_49.v
@@ -241,7 +241,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -414,7 +414,7 @@ module fir (
// (24 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_24(
.dataa (INPUT_PIPELINE_REG_24),
.result(L0_output_wires_24)
@@ -422,8 +422,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -602,7 +602,7 @@ module fir (
// (25 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -691,7 +691,7 @@ module fir (
// (12 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_24(
.dataa (L1_mult_wires_24),
.result(L1_output_wires_12)
@@ -699,7 +699,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -746,7 +746,7 @@ module fir (
// (6 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_12(
.dataa (L1_output_wires_12),
.result(L2_output_wires_6)
@@ -754,7 +754,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -780,7 +780,7 @@ module fir (
// (3 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_6(
.dataa (L2_output_wires_6),
.result(L3_output_wires_3)
@@ -788,7 +788,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -806,7 +806,7 @@ module fir (
// (2 main tree Adders)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_50.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_50.v
index 1c32f9e6409..1bbf26cc68f 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_50.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_50.v
@@ -243,7 +243,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -422,8 +422,8 @@ module fir (
// (25 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -602,7 +602,7 @@ module fir (
// (25 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -691,7 +691,7 @@ module fir (
// (12 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_24(
.dataa (L1_mult_wires_24),
.result(L1_output_wires_12)
@@ -699,7 +699,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -746,7 +746,7 @@ module fir (
// (6 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_12(
.dataa (L1_output_wires_12),
.result(L2_output_wires_6)
@@ -754,7 +754,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -780,7 +780,7 @@ module fir (
// (3 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_6(
.dataa (L2_output_wires_6),
.result(L3_output_wires_3)
@@ -788,7 +788,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -806,7 +806,7 @@ module fir (
// (2 main tree Adders)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_51.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_51.v
index efa0d27442f..eaa694d3759 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_51.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_51.v
@@ -246,7 +246,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -426,7 +426,7 @@ module fir (
// (25 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_25(
.dataa (INPUT_PIPELINE_REG_25),
.result(L0_output_wires_25)
@@ -434,8 +434,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -621,7 +621,7 @@ module fir (
// (26 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -716,7 +716,7 @@ module fir (
// (13 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -763,7 +763,7 @@ module fir (
// (6 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_12(
.dataa (L1_output_wires_12),
.result(L2_output_wires_6)
@@ -771,7 +771,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -797,7 +797,7 @@ module fir (
// (3 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_6(
.dataa (L2_output_wires_6),
.result(L3_output_wires_3)
@@ -805,7 +805,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -823,7 +823,7 @@ module fir (
// (2 main tree Adders)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_52.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_52.v
index 09b4a1f3776..19a7feb97d5 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_52.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_nopipe_52.v
@@ -248,7 +248,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -434,8 +434,8 @@ module fir (
// (26 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -621,7 +621,7 @@ module fir (
// (26 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -716,7 +716,7 @@ module fir (
// (13 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -763,7 +763,7 @@ module fir (
// (6 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_12(
.dataa (L1_output_wires_12),
.result(L2_output_wires_6)
@@ -771,7 +771,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -797,7 +797,7 @@ module fir (
// (3 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_6(
.dataa (L2_output_wires_6),
.result(L3_output_wires_3)
@@ -805,7 +805,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -823,7 +823,7 @@ module fir (
// (2 main tree Adders)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_10.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_10.v
index 4ae27e69daa..4ab846c4554 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_10.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_10.v
@@ -123,7 +123,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -167,8 +167,8 @@ module fir (
// (5 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -212,7 +212,7 @@ module fir (
// (5 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -233,7 +233,7 @@ module fir (
// (2 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_4(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_mult_wires_4),
@@ -242,7 +242,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
@@ -255,7 +255,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_2(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_output_wires_2),
@@ -264,7 +264,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
adder_with_1_reg L3_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_11.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_11.v
index 31f268e6b40..d9ca46976dc 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_11.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_11.v
@@ -127,7 +127,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -172,7 +172,7 @@ module fir (
// (5 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_5(
.clk(clk), .clk_ena(clk_ena),
.dataa (INPUT_PIPELINE_REG_5),
@@ -181,8 +181,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -234,7 +234,7 @@ module fir (
// (6 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -262,7 +262,7 @@ module fir (
// (3 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
@@ -275,7 +275,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_2(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_output_wires_2),
@@ -284,7 +284,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
adder_with_1_reg L3_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_12.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_12.v
index d948682d83e..756d04ad181 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_12.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_12.v
@@ -129,7 +129,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -181,8 +181,8 @@ module fir (
// (6 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -234,7 +234,7 @@ module fir (
// (6 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -262,7 +262,7 @@ module fir (
// (3 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
@@ -275,7 +275,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_2(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_output_wires_2),
@@ -284,7 +284,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
adder_with_1_reg L3_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_13.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_13.v
index 26f277fe49c..3ec2cf35437 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_13.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_13.v
@@ -133,7 +133,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -186,7 +186,7 @@ module fir (
// (6 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_6(
.clk(clk), .clk_ena(clk_ena),
.dataa (INPUT_PIPELINE_REG_6),
@@ -195,8 +195,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -256,7 +256,7 @@ module fir (
// (7 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -285,7 +285,7 @@ module fir (
// (3 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_6(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_mult_wires_6),
@@ -294,7 +294,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
@@ -314,7 +314,7 @@ module fir (
// (2 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
adder_with_1_reg L3_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_14.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_14.v
index 7ec65967aff..d6b4fe345b5 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_14.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_14.v
@@ -135,7 +135,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -195,8 +195,8 @@ module fir (
// (7 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -256,7 +256,7 @@ module fir (
// (7 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -285,7 +285,7 @@ module fir (
// (3 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_6(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_mult_wires_6),
@@ -294,7 +294,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
@@ -314,7 +314,7 @@ module fir (
// (2 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
adder_with_1_reg L3_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_15.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_15.v
index 52a1300be82..dd593d5c89b 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_15.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_15.v
@@ -139,7 +139,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -200,7 +200,7 @@ module fir (
// (7 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_7(
.clk(clk), .clk_ena(clk_ena),
.dataa (INPUT_PIPELINE_REG_7),
@@ -209,8 +209,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -278,7 +278,7 @@ module fir (
// (8 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -314,7 +314,7 @@ module fir (
// (4 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
@@ -334,7 +334,7 @@ module fir (
// (2 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
adder_with_1_reg L3_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_16.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_16.v
index afc50f590eb..aa45ad44a8d 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_16.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_16.v
@@ -141,7 +141,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -209,8 +209,8 @@ module fir (
// (8 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -278,7 +278,7 @@ module fir (
// (8 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -314,7 +314,7 @@ module fir (
// (4 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
@@ -334,7 +334,7 @@ module fir (
// (2 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
adder_with_1_reg L3_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_17.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_17.v
index f5f83d27cd6..44bbe03baf1 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_17.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_17.v
@@ -145,7 +145,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -214,7 +214,7 @@ module fir (
// (8 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_8(
.clk(clk), .clk_ena(clk_ena),
.dataa (INPUT_PIPELINE_REG_8),
@@ -223,8 +223,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -300,7 +300,7 @@ module fir (
// (9 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -337,7 +337,7 @@ module fir (
// (4 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_8(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_mult_wires_8),
@@ -346,7 +346,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -367,7 +367,7 @@ module fir (
// (2 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_4(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_output_wires_4),
@@ -376,7 +376,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
@@ -389,7 +389,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_2(
.clk(clk), .clk_ena(clk_ena),
.dataa (L2_output_wires_2),
@@ -398,7 +398,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
adder_with_1_reg L4_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_18.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_18.v
index cb783e64aa3..48d5e9937b6 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_18.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_18.v
@@ -147,7 +147,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -223,8 +223,8 @@ module fir (
// (9 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -300,7 +300,7 @@ module fir (
// (9 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -337,7 +337,7 @@ module fir (
// (4 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_8(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_mult_wires_8),
@@ -346,7 +346,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -367,7 +367,7 @@ module fir (
// (2 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_4(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_output_wires_4),
@@ -376,7 +376,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
@@ -389,7 +389,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_2(
.clk(clk), .clk_ena(clk_ena),
.dataa (L2_output_wires_2),
@@ -398,7 +398,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
adder_with_1_reg L4_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_19.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_19.v
index 83e11f8eaeb..c21dd08371a 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_19.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_19.v
@@ -151,7 +151,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -228,7 +228,7 @@ module fir (
// (9 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_9(
.clk(clk), .clk_ena(clk_ena),
.dataa (INPUT_PIPELINE_REG_9),
@@ -237,8 +237,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -322,7 +322,7 @@ module fir (
// (10 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -366,7 +366,7 @@ module fir (
// (5 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -387,7 +387,7 @@ module fir (
// (2 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_4(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_output_wires_4),
@@ -396,7 +396,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
@@ -409,7 +409,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_2(
.clk(clk), .clk_ena(clk_ena),
.dataa (L2_output_wires_2),
@@ -418,7 +418,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
adder_with_1_reg L4_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_20.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_20.v
index 9e47c8d69f3..cedef43ec09 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_20.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_20.v
@@ -153,7 +153,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -237,8 +237,8 @@ module fir (
// (10 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -322,7 +322,7 @@ module fir (
// (10 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -366,7 +366,7 @@ module fir (
// (5 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -387,7 +387,7 @@ module fir (
// (2 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_4(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_output_wires_4),
@@ -396,7 +396,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
@@ -409,7 +409,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_2(
.clk(clk), .clk_ena(clk_ena),
.dataa (L2_output_wires_2),
@@ -418,7 +418,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
adder_with_1_reg L4_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_21.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_21.v
index dc3fd51c605..00aa5670f54 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_21.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_21.v
@@ -157,7 +157,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -242,7 +242,7 @@ module fir (
// (10 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_10(
.clk(clk), .clk_ena(clk_ena),
.dataa (INPUT_PIPELINE_REG_10),
@@ -251,8 +251,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -344,7 +344,7 @@ module fir (
// (11 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -389,7 +389,7 @@ module fir (
// (5 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_10(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_mult_wires_10),
@@ -398,7 +398,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -426,7 +426,7 @@ module fir (
// (3 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
@@ -439,7 +439,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_2(
.clk(clk), .clk_ena(clk_ena),
.dataa (L2_output_wires_2),
@@ -448,7 +448,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
adder_with_1_reg L4_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_22.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_22.v
index 97924a4e3e8..fb23dc8046c 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_22.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_22.v
@@ -159,7 +159,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -251,8 +251,8 @@ module fir (
// (11 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -344,7 +344,7 @@ module fir (
// (11 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -389,7 +389,7 @@ module fir (
// (5 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_10(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_mult_wires_10),
@@ -398,7 +398,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -426,7 +426,7 @@ module fir (
// (3 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
@@ -439,7 +439,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_2(
.clk(clk), .clk_ena(clk_ena),
.dataa (L2_output_wires_2),
@@ -448,7 +448,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
adder_with_1_reg L4_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_23.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_23.v
index 73afecc08ee..f78ab10be56 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_23.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_23.v
@@ -163,7 +163,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -256,7 +256,7 @@ module fir (
// (11 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_11(
.clk(clk), .clk_ena(clk_ena),
.dataa (INPUT_PIPELINE_REG_11),
@@ -265,8 +265,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -366,7 +366,7 @@ module fir (
// (12 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -418,7 +418,7 @@ module fir (
// (6 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -446,7 +446,7 @@ module fir (
// (3 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
@@ -459,7 +459,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_2(
.clk(clk), .clk_ena(clk_ena),
.dataa (L2_output_wires_2),
@@ -468,7 +468,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
adder_with_1_reg L4_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_24.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_24.v
index 6603fbf97f8..1c700b3fcc5 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_24.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_24.v
@@ -165,7 +165,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -265,8 +265,8 @@ module fir (
// (12 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -366,7 +366,7 @@ module fir (
// (12 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -418,7 +418,7 @@ module fir (
// (6 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -446,7 +446,7 @@ module fir (
// (3 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
@@ -459,7 +459,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_2(
.clk(clk), .clk_ena(clk_ena),
.dataa (L2_output_wires_2),
@@ -468,7 +468,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
adder_with_1_reg L4_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_25.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_25.v
index 218bea0b3e4..4a7785cc0a2 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_25.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_25.v
@@ -169,7 +169,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -270,7 +270,7 @@ module fir (
// (12 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_12(
.clk(clk), .clk_ena(clk_ena),
.dataa (INPUT_PIPELINE_REG_12),
@@ -279,8 +279,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -388,7 +388,7 @@ module fir (
// (13 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -441,7 +441,7 @@ module fir (
// (6 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_12(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_mult_wires_12),
@@ -450,7 +450,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -479,7 +479,7 @@ module fir (
// (3 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_6(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_output_wires_6),
@@ -488,7 +488,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
@@ -508,7 +508,7 @@ module fir (
// (2 main tree Adders)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
adder_with_1_reg L4_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_26.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_26.v
index 37881e4c277..e3856d4e3a9 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_26.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_26.v
@@ -171,7 +171,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -279,8 +279,8 @@ module fir (
// (13 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -388,7 +388,7 @@ module fir (
// (13 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -441,7 +441,7 @@ module fir (
// (6 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_12(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_mult_wires_12),
@@ -450,7 +450,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -479,7 +479,7 @@ module fir (
// (3 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_6(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_output_wires_6),
@@ -488,7 +488,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
@@ -508,7 +508,7 @@ module fir (
// (2 main tree Adders)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
adder_with_1_reg L4_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_27.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_27.v
index 7713ecc462c..71a101b0d01 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_27.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_27.v
@@ -175,7 +175,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -284,7 +284,7 @@ module fir (
// (13 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_13(
.clk(clk), .clk_ena(clk_ena),
.dataa (INPUT_PIPELINE_REG_13),
@@ -293,8 +293,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -410,7 +410,7 @@ module fir (
// (14 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -470,7 +470,7 @@ module fir (
// (7 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -499,7 +499,7 @@ module fir (
// (3 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_6(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_output_wires_6),
@@ -508,7 +508,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
@@ -528,7 +528,7 @@ module fir (
// (2 main tree Adders)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
adder_with_1_reg L4_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_28.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_28.v
index e08ea68d97f..a1cb3492f32 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_28.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_28.v
@@ -177,7 +177,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -293,8 +293,8 @@ module fir (
// (14 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -410,7 +410,7 @@ module fir (
// (14 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -470,7 +470,7 @@ module fir (
// (7 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -499,7 +499,7 @@ module fir (
// (3 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_6(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_output_wires_6),
@@ -508,7 +508,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
@@ -528,7 +528,7 @@ module fir (
// (2 main tree Adders)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
adder_with_1_reg L4_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_29.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_29.v
index d16cf64a722..fb5109f088e 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_29.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_29.v
@@ -181,7 +181,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -298,7 +298,7 @@ module fir (
// (14 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_14(
.clk(clk), .clk_ena(clk_ena),
.dataa (INPUT_PIPELINE_REG_14),
@@ -307,8 +307,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -432,7 +432,7 @@ module fir (
// (15 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -493,7 +493,7 @@ module fir (
// (7 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_14(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_mult_wires_14),
@@ -502,7 +502,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -538,7 +538,7 @@ module fir (
// (4 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
@@ -558,7 +558,7 @@ module fir (
// (2 main tree Adders)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
adder_with_1_reg L4_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_30.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_30.v
index 8402a9057a7..1fbca32d524 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_30.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_30.v
@@ -183,7 +183,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -307,8 +307,8 @@ module fir (
// (15 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -432,7 +432,7 @@ module fir (
// (15 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -493,7 +493,7 @@ module fir (
// (7 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_14(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_mult_wires_14),
@@ -502,7 +502,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -538,7 +538,7 @@ module fir (
// (4 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
@@ -558,7 +558,7 @@ module fir (
// (2 main tree Adders)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
adder_with_1_reg L4_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_31.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_31.v
index 5bae04085f3..0818dcc4f6d 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_31.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_31.v
@@ -187,7 +187,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -312,7 +312,7 @@ module fir (
// (15 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_15(
.clk(clk), .clk_ena(clk_ena),
.dataa (INPUT_PIPELINE_REG_15),
@@ -321,8 +321,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -454,7 +454,7 @@ module fir (
// (16 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -522,7 +522,7 @@ module fir (
// (8 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -558,7 +558,7 @@ module fir (
// (4 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
@@ -578,7 +578,7 @@ module fir (
// (2 main tree Adders)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
adder_with_1_reg L4_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_32.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_32.v
index 8e5043eb5ce..735e086e627 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_32.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_32.v
@@ -189,7 +189,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -321,8 +321,8 @@ module fir (
// (16 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -454,7 +454,7 @@ module fir (
// (16 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -522,7 +522,7 @@ module fir (
// (8 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -558,7 +558,7 @@ module fir (
// (4 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
@@ -578,7 +578,7 @@ module fir (
// (2 main tree Adders)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
adder_with_1_reg L4_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_33.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_33.v
index 00aee5fa8d4..93946275d35 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_33.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_33.v
@@ -193,7 +193,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -326,7 +326,7 @@ module fir (
// (16 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_16(
.clk(clk), .clk_ena(clk_ena),
.dataa (INPUT_PIPELINE_REG_16),
@@ -335,8 +335,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -476,7 +476,7 @@ module fir (
// (17 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -545,7 +545,7 @@ module fir (
// (8 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_16(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_mult_wires_16),
@@ -554,7 +554,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -591,7 +591,7 @@ module fir (
// (4 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_8(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_output_wires_8),
@@ -600,7 +600,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -621,7 +621,7 @@ module fir (
// (2 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_4(
.clk(clk), .clk_ena(clk_ena),
.dataa (L2_output_wires_4),
@@ -630,7 +630,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -643,7 +643,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L4_byereg_for_2(
.clk(clk), .clk_ena(clk_ena),
.dataa (L3_output_wires_2),
@@ -652,7 +652,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_34.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_34.v
index 6daf1cce871..ad11b3efa95 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_34.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_34.v
@@ -195,7 +195,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -335,8 +335,8 @@ module fir (
// (17 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -476,7 +476,7 @@ module fir (
// (17 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -545,7 +545,7 @@ module fir (
// (8 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_16(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_mult_wires_16),
@@ -554,7 +554,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -591,7 +591,7 @@ module fir (
// (4 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_8(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_output_wires_8),
@@ -600,7 +600,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -621,7 +621,7 @@ module fir (
// (2 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_4(
.clk(clk), .clk_ena(clk_ena),
.dataa (L2_output_wires_4),
@@ -630,7 +630,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -643,7 +643,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L4_byereg_for_2(
.clk(clk), .clk_ena(clk_ena),
.dataa (L3_output_wires_2),
@@ -652,7 +652,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_35.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_35.v
index 6c579a6f408..0270e808bd1 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_35.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_35.v
@@ -199,7 +199,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -340,7 +340,7 @@ module fir (
// (17 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_17(
.clk(clk), .clk_ena(clk_ena),
.dataa (INPUT_PIPELINE_REG_17),
@@ -349,8 +349,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -498,7 +498,7 @@ module fir (
// (18 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -574,7 +574,7 @@ module fir (
// (9 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -611,7 +611,7 @@ module fir (
// (4 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_8(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_output_wires_8),
@@ -620,7 +620,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -641,7 +641,7 @@ module fir (
// (2 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_4(
.clk(clk), .clk_ena(clk_ena),
.dataa (L2_output_wires_4),
@@ -650,7 +650,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -663,7 +663,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L4_byereg_for_2(
.clk(clk), .clk_ena(clk_ena),
.dataa (L3_output_wires_2),
@@ -672,7 +672,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_36.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_36.v
index bdcea8c1145..c86620837ea 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_36.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_36.v
@@ -201,7 +201,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -349,8 +349,8 @@ module fir (
// (18 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -498,7 +498,7 @@ module fir (
// (18 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -574,7 +574,7 @@ module fir (
// (9 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -611,7 +611,7 @@ module fir (
// (4 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_8(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_output_wires_8),
@@ -620,7 +620,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -641,7 +641,7 @@ module fir (
// (2 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_4(
.clk(clk), .clk_ena(clk_ena),
.dataa (L2_output_wires_4),
@@ -650,7 +650,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -663,7 +663,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L4_byereg_for_2(
.clk(clk), .clk_ena(clk_ena),
.dataa (L3_output_wires_2),
@@ -672,7 +672,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_37.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_37.v
index ee34318498f..6993a0c4ae1 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_37.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_37.v
@@ -205,7 +205,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -354,7 +354,7 @@ module fir (
// (18 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_18(
.clk(clk), .clk_ena(clk_ena),
.dataa (INPUT_PIPELINE_REG_18),
@@ -363,8 +363,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -520,7 +520,7 @@ module fir (
// (19 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -597,7 +597,7 @@ module fir (
// (9 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_18(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_mult_wires_18),
@@ -606,7 +606,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -650,7 +650,7 @@ module fir (
// (5 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -671,7 +671,7 @@ module fir (
// (2 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_4(
.clk(clk), .clk_ena(clk_ena),
.dataa (L2_output_wires_4),
@@ -680,7 +680,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -693,7 +693,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L4_byereg_for_2(
.clk(clk), .clk_ena(clk_ena),
.dataa (L3_output_wires_2),
@@ -702,7 +702,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_38.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_38.v
index 78f668a8b7a..b34ca421a5c 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_38.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_38.v
@@ -207,7 +207,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -363,8 +363,8 @@ module fir (
// (19 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -520,7 +520,7 @@ module fir (
// (19 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -597,7 +597,7 @@ module fir (
// (9 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_18(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_mult_wires_18),
@@ -606,7 +606,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -650,7 +650,7 @@ module fir (
// (5 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -671,7 +671,7 @@ module fir (
// (2 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_4(
.clk(clk), .clk_ena(clk_ena),
.dataa (L2_output_wires_4),
@@ -680,7 +680,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -693,7 +693,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L4_byereg_for_2(
.clk(clk), .clk_ena(clk_ena),
.dataa (L3_output_wires_2),
@@ -702,7 +702,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_39.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_39.v
index daeb3ea15b9..1fe09e330d1 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_39.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_39.v
@@ -211,7 +211,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -368,7 +368,7 @@ module fir (
// (19 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_19(
.clk(clk), .clk_ena(clk_ena),
.dataa (INPUT_PIPELINE_REG_19),
@@ -377,8 +377,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -542,7 +542,7 @@ module fir (
// (20 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -626,7 +626,7 @@ module fir (
// (10 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -670,7 +670,7 @@ module fir (
// (5 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -691,7 +691,7 @@ module fir (
// (2 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_4(
.clk(clk), .clk_ena(clk_ena),
.dataa (L2_output_wires_4),
@@ -700,7 +700,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -713,7 +713,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L4_byereg_for_2(
.clk(clk), .clk_ena(clk_ena),
.dataa (L3_output_wires_2),
@@ -722,7 +722,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_40.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_40.v
index b52beedf49d..d3d5acec761 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_40.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_40.v
@@ -213,7 +213,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -377,8 +377,8 @@ module fir (
// (20 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -542,7 +542,7 @@ module fir (
// (20 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -626,7 +626,7 @@ module fir (
// (10 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -670,7 +670,7 @@ module fir (
// (5 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -691,7 +691,7 @@ module fir (
// (2 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_4(
.clk(clk), .clk_ena(clk_ena),
.dataa (L2_output_wires_4),
@@ -700,7 +700,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -713,7 +713,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L4_byereg_for_2(
.clk(clk), .clk_ena(clk_ena),
.dataa (L3_output_wires_2),
@@ -722,7 +722,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_41.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_41.v
index d2b88794bf8..04513c40372 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_41.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_41.v
@@ -217,7 +217,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -382,7 +382,7 @@ module fir (
// (20 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_20(
.clk(clk), .clk_ena(clk_ena),
.dataa (INPUT_PIPELINE_REG_20),
@@ -391,8 +391,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -564,7 +564,7 @@ module fir (
// (21 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -649,7 +649,7 @@ module fir (
// (10 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_20(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_mult_wires_20),
@@ -658,7 +658,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -703,7 +703,7 @@ module fir (
// (5 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_10(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_output_wires_10),
@@ -712,7 +712,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -740,7 +740,7 @@ module fir (
// (3 main tree Adders)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -753,7 +753,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L4_byereg_for_2(
.clk(clk), .clk_ena(clk_ena),
.dataa (L3_output_wires_2),
@@ -762,7 +762,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_42.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_42.v
index f339b51e37f..64c54373cd7 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_42.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_42.v
@@ -219,7 +219,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -391,8 +391,8 @@ module fir (
// (21 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -564,7 +564,7 @@ module fir (
// (21 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -649,7 +649,7 @@ module fir (
// (10 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_20(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_mult_wires_20),
@@ -658,7 +658,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -703,7 +703,7 @@ module fir (
// (5 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_10(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_output_wires_10),
@@ -712,7 +712,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -740,7 +740,7 @@ module fir (
// (3 main tree Adders)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -753,7 +753,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L4_byereg_for_2(
.clk(clk), .clk_ena(clk_ena),
.dataa (L3_output_wires_2),
@@ -762,7 +762,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_43.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_43.v
index 7ebbf18d416..a1f7c7f3999 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_43.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_43.v
@@ -223,7 +223,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -396,7 +396,7 @@ module fir (
// (21 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_21(
.clk(clk), .clk_ena(clk_ena),
.dataa (INPUT_PIPELINE_REG_21),
@@ -405,8 +405,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -586,7 +586,7 @@ module fir (
// (22 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -678,7 +678,7 @@ module fir (
// (11 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -723,7 +723,7 @@ module fir (
// (5 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_10(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_output_wires_10),
@@ -732,7 +732,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -760,7 +760,7 @@ module fir (
// (3 main tree Adders)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -773,7 +773,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L4_byereg_for_2(
.clk(clk), .clk_ena(clk_ena),
.dataa (L3_output_wires_2),
@@ -782,7 +782,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_44.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_44.v
index 0c00e6285cc..e4bc78e3e5a 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_44.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_44.v
@@ -225,7 +225,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -405,8 +405,8 @@ module fir (
// (22 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -586,7 +586,7 @@ module fir (
// (22 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -678,7 +678,7 @@ module fir (
// (11 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -723,7 +723,7 @@ module fir (
// (5 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_10(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_output_wires_10),
@@ -732,7 +732,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -760,7 +760,7 @@ module fir (
// (3 main tree Adders)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -773,7 +773,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L4_byereg_for_2(
.clk(clk), .clk_ena(clk_ena),
.dataa (L3_output_wires_2),
@@ -782,7 +782,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_45.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_45.v
index efcf455f944..c59f0ffe767 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_45.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_45.v
@@ -229,7 +229,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -410,7 +410,7 @@ module fir (
// (22 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_22(
.clk(clk), .clk_ena(clk_ena),
.dataa (INPUT_PIPELINE_REG_22),
@@ -419,8 +419,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -608,7 +608,7 @@ module fir (
// (23 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -701,7 +701,7 @@ module fir (
// (11 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_22(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_mult_wires_22),
@@ -710,7 +710,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -762,7 +762,7 @@ module fir (
// (6 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -790,7 +790,7 @@ module fir (
// (3 main tree Adders)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -803,7 +803,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L4_byereg_for_2(
.clk(clk), .clk_ena(clk_ena),
.dataa (L3_output_wires_2),
@@ -812,7 +812,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_46.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_46.v
index b2a90867ee9..fdeb91aab6e 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_46.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_46.v
@@ -231,7 +231,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -419,8 +419,8 @@ module fir (
// (23 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -608,7 +608,7 @@ module fir (
// (23 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -701,7 +701,7 @@ module fir (
// (11 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_22(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_mult_wires_22),
@@ -710,7 +710,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -762,7 +762,7 @@ module fir (
// (6 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -790,7 +790,7 @@ module fir (
// (3 main tree Adders)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -803,7 +803,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L4_byereg_for_2(
.clk(clk), .clk_ena(clk_ena),
.dataa (L3_output_wires_2),
@@ -812,7 +812,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_47.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_47.v
index faf2e812639..7824c1e8373 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_47.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_47.v
@@ -235,7 +235,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -424,7 +424,7 @@ module fir (
// (23 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_23(
.clk(clk), .clk_ena(clk_ena),
.dataa (INPUT_PIPELINE_REG_23),
@@ -433,8 +433,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -630,7 +630,7 @@ module fir (
// (24 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -730,7 +730,7 @@ module fir (
// (12 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -782,7 +782,7 @@ module fir (
// (6 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -810,7 +810,7 @@ module fir (
// (3 main tree Adders)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -823,7 +823,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L4_byereg_for_2(
.clk(clk), .clk_ena(clk_ena),
.dataa (L3_output_wires_2),
@@ -832,7 +832,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_48.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_48.v
index a9df9cd771d..079175af35e 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_48.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_48.v
@@ -237,7 +237,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -433,8 +433,8 @@ module fir (
// (24 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -630,7 +630,7 @@ module fir (
// (24 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -730,7 +730,7 @@ module fir (
// (12 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -782,7 +782,7 @@ module fir (
// (6 main tree Adders)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -810,7 +810,7 @@ module fir (
// (3 main tree Adders)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -823,7 +823,7 @@ module fir (
// (1 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L4_byereg_for_2(
.clk(clk), .clk_ena(clk_ena),
.dataa (L3_output_wires_2),
@@ -832,7 +832,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_49.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_49.v
index 9b0b12ec730..a8b925e8675 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_49.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_49.v
@@ -241,7 +241,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -438,7 +438,7 @@ module fir (
// (24 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_24(
.clk(clk), .clk_ena(clk_ena),
.dataa (INPUT_PIPELINE_REG_24),
@@ -447,8 +447,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -652,7 +652,7 @@ module fir (
// (25 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -753,7 +753,7 @@ module fir (
// (12 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_24(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_mult_wires_24),
@@ -762,7 +762,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -815,7 +815,7 @@ module fir (
// (6 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_12(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_output_wires_12),
@@ -824,7 +824,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -853,7 +853,7 @@ module fir (
// (3 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_6(
.clk(clk), .clk_ena(clk_ena),
.dataa (L2_output_wires_6),
@@ -862,7 +862,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -882,7 +882,7 @@ module fir (
// (2 main tree Adders)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_50.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_50.v
index 5d5f4aad9c4..84e6390fc63 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_50.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_50.v
@@ -243,7 +243,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -447,8 +447,8 @@ module fir (
// (25 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -652,7 +652,7 @@ module fir (
// (25 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -753,7 +753,7 @@ module fir (
// (12 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L1_byereg_for_24(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_mult_wires_24),
@@ -762,7 +762,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -815,7 +815,7 @@ module fir (
// (6 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_12(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_output_wires_12),
@@ -824,7 +824,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -853,7 +853,7 @@ module fir (
// (3 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_6(
.clk(clk), .clk_ena(clk_ena),
.dataa (L2_output_wires_6),
@@ -862,7 +862,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -882,7 +882,7 @@ module fir (
// (2 main tree Adders)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_51.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_51.v
index 02fe9f4b51b..cfba8826671 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_51.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_51.v
@@ -246,7 +246,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -451,7 +451,7 @@ module fir (
// (25 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L0_byereg_for_25(
.clk(clk), .clk_ena(clk_ena),
.dataa (INPUT_PIPELINE_REG_25),
@@ -460,8 +460,8 @@ module fir (
// (1 byes)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -673,7 +673,7 @@ module fir (
// (26 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -781,7 +781,7 @@ module fir (
// (13 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -834,7 +834,7 @@ module fir (
// (6 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_12(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_output_wires_12),
@@ -843,7 +843,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -872,7 +872,7 @@ module fir (
// (3 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_6(
.clk(clk), .clk_ena(clk_ena),
.dataa (L2_output_wires_6),
@@ -881,7 +881,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -901,7 +901,7 @@ module fir (
// (2 main tree Adders)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_52.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_52.v
index 1d25a4528f9..b0c5f71c5d5 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_52.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/FIR_filters/verilog/fir_pipe_52.v
@@ -248,7 +248,7 @@ module fir (
// *
// *****************************************************
- // ************************* LEVEL 0 ************************* \\
+ // ************************* LEVEL 0 *************************
wire [dw-1:0] L0_output_wires_0;
wire [dw-1:0] L0_output_wires_1;
wire [dw-1:0] L0_output_wires_2;
@@ -460,8 +460,8 @@ module fir (
// (26 main tree Adders)
- // ************************* LEVEL 1 ************************* \\
- // **************** Multipliers **************** \\
+ // ************************* LEVEL 1 *************************
+ // **************** Multipliers ****************
wire [dw-1:0] L1_mult_wires_0;
wire [dw-1:0] L1_mult_wires_1;
wire [dw-1:0] L1_mult_wires_2;
@@ -673,7 +673,7 @@ module fir (
// (26 Multipliers)
- // **************** Adders **************** \\
+ // **************** Adders ****************
wire [dw-1:0] L1_output_wires_0;
wire [dw-1:0] L1_output_wires_1;
wire [dw-1:0] L1_output_wires_2;
@@ -781,7 +781,7 @@ module fir (
// (13 main tree Adders)
- // ************************* LEVEL 2 ************************* \\
+ // ************************* LEVEL 2 *************************
wire [dw-1:0] L2_output_wires_0;
wire [dw-1:0] L2_output_wires_1;
wire [dw-1:0] L2_output_wires_2;
@@ -834,7 +834,7 @@ module fir (
// (6 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L2_byereg_for_12(
.clk(clk), .clk_ena(clk_ena),
.dataa (L1_output_wires_12),
@@ -843,7 +843,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 3 ************************* \\
+ // ************************* LEVEL 3 *************************
wire [dw-1:0] L3_output_wires_0;
wire [dw-1:0] L3_output_wires_1;
wire [dw-1:0] L3_output_wires_2;
@@ -872,7 +872,7 @@ module fir (
// (3 main tree Adders)
- // ********* Byes ******** \\
+ // ********* Byes ********
one_register L3_byereg_for_6(
.clk(clk), .clk_ena(clk_ena),
.dataa (L2_output_wires_6),
@@ -881,7 +881,7 @@ module fir (
// (1 byes)
- // ************************* LEVEL 4 ************************* \\
+ // ************************* LEVEL 4 *************************
wire [dw-1:0] L4_output_wires_0;
wire [dw-1:0] L4_output_wires_1;
@@ -901,7 +901,7 @@ module fir (
// (2 main tree Adders)
- // ************************* LEVEL 5 ************************* \\
+ // ************************* LEVEL 5 *************************
wire [dw-1:0] L5_output_wires_0;
adder_with_1_reg L5_adder_0and1(
diff --git a/vtr_flow/benchmarks/arithmetic/generated_circuits/cmu_DFT/verilog/64-16bit-fixed-JACM.v b/vtr_flow/benchmarks/arithmetic/generated_circuits/cmu_DFT/verilog/64-16bit-fixed-JACM.v
index e9ff98ec4a9..8b25c26a876 100644
--- a/vtr_flow/benchmarks/arithmetic/generated_circuits/cmu_DFT/verilog/64-16bit-fixed-JACM.v
+++ b/vtr_flow/benchmarks/arithmetic/generated_circuits/cmu_DFT/verilog/64-16bit-fixed-JACM.v
@@ -992,7 +992,7 @@ endmodule
-module memMod(in, out, inAddr, outAddr, writeSel, clk);
+/*module memMod(in, out, inAddr, outAddr, writeSel, clk);
parameter depth=1024, width=16, logDepth=10;
@@ -1012,7 +1012,7 @@ module memMod(in, out, inAddr, outAddr, writeSel, clk);
if (writeSel)
mem[inAddr] <= in;
end
-endmodule
+endmodule */
diff --git a/vtr_flow/benchmarks/verilog/raygentop.v b/vtr_flow/benchmarks/verilog/raygentop.v
index 2aaeec7a6f4..e55b8bff8a7 100755
--- a/vtr_flow/benchmarks/verilog/raygentop.v
+++ b/vtr_flow/benchmarks/verilog/raygentop.v
@@ -1,4 +1,4 @@
- module paj_raygentop_hierarchy_no_mem (rgwant_addr, rgwant_data, rgread_ready, rgaddr_ready, rgdata_ready, rgwant_read, rgdatain, rgdataout, rgaddrin, rgCont, rgStat, rgCfgData, rgwant_CfgData, rgCfgData_ready, tm3_sram_data_in, tm3_sram_data_out, tm3_sram_addr, tm3_sram_we, tm3_sram_oe, tm3_sram_adsp, tm3_clk_v0, fbdata, fbdatavalid, fbnextscanline, raygroup01, raygroupvalid01, busy01, raygroup10, raygroupvalid10, busy10, globalreset, rgData, rgAddr, rgWE, rgAddrValid, rgDone, rgResultData, rgResultReady, rgResultSource);
+ module paj_raygentop_hierarchy_no_mem (rgwant_addr, rgwant_data, rgread_ready, rgaddr_ready, rgdata_ready, rgwant_read, rgdatain, rgdataout, rgaddrin, rgCont, rgStat, rgCfgData, rgwant_CfgData, rgCfgData_ready, tm3_sram_data_in, tm3_sram_data_out, tm3_sram_addr, tm3_sram_we, tm3_sram_oe, tm3_sram_adsp, clk, fbdata, fbdatavalid, fbnextscanline, raygroup01, raygroupvalid01, busy01, raygroup10, raygroupvalid10, busy10, globalreset, rgData, rgAddr, rgWE, rgAddrValid, rgDone, rgResultData, rgResultReady, rgResultSource);
output rgwant_addr;
wire rgwant_addr;
@@ -35,7 +35,7 @@
wire[1:0] tm3_sram_oe;
output tm3_sram_adsp;
wire tm3_sram_adsp;
- input tm3_clk_v0;
+ input clk;
output[63:0] fbdata;
wire[63:0] fbdata;
@@ -158,9 +158,9 @@
assign rgwant_CfgData = wantcfg ;
- onlyonecycle onlyeonecycleinst (rgCont[0], go, globalreset, tm3_clk_v0);
+ onlyonecycle onlyeonecycleinst (rgCont[0], go, globalreset, clk);
- always @(posedge tm3_clk_v0)
+ always @(posedge clk)
begin
if (globalreset == 1'b1)
begin
@@ -174,18 +174,18 @@
end
assign fbpage = ~page ;
- matmult matmultinst(sramdatal[47:32], sramdatal[31:16], sramdatal[15:0], m11, m12, m13, m21, m22, m23, m31, m32, m33, dir[47:32], dir[31:16], dir[15:0], tm3_clk_v0);
+ matmult matmultinst(sramdatal[47:32], sramdatal[31:16], sramdatal[15:0], m11, m12, m13, m21, m22, m23, m31, m32, m33, dir[47:32], dir[31:16], dir[15:0], clk);
- delay1x3 dir01delay(dirReady, dirReadyl, tm3_clk_v0);
- rgconfigmemory ConfigMemoryInst (rgCfgData[31:28], rgCfgData[27:0], rgCfgData_ready, wantcfg, origx, origy, origz, m11, m12, m13, m21, m22, m23, m31, m32, m33, bkcolour, texinfo, globalreset, tm3_clk_v0);
+ delay1x3 dir01delay(dirReady, dirReadyl, clk);
+ rgconfigmemory ConfigMemoryInst (rgCfgData[31:28], rgCfgData[27:0], rgCfgData_ready, wantcfg, origx, origy, origz, m11, m12, m13, m21, m22, m23, m31, m32, m33, bkcolour, texinfo, globalreset, clk);
- rgsramcontroller sramcont (rgwant_addr, rgaddr_ready, rgaddrin, rgwant_data, rgdata_ready, rgdatain, rgwant_read, rgread_ready, rgdataout, dirReady, wantDir, sramdatal, address, wantwriteback, writebackack, writebackdata, writebackaddr, fbdata, fbnextscanline, fbdatavalid, fbpage, shadedata, triID, wantshadedata, shadedataready, texeladdr, texel, wanttexel, texelready, tm3_sram_data_in, tm3_sram_data_out, tm3_sram_addr, tm3_sram_we, tm3_sram_oe, tm3_sram_adsp, globalreset, tm3_clk_v0);
- raysend raysendinst (as01, ack01, addr01, dir01, origx, origy, origz, rgData, rgAddr, rgWE, rgAddrValid, rgDone, globalreset, tm3_clk_v0, statepeek2);
+ rgsramcontroller sramcont (rgwant_addr, rgaddr_ready, rgaddrin, rgwant_data, rgdata_ready, rgdatain, rgwant_read, rgread_ready, rgdataout, dirReady, wantDir, sramdatal, address, wantwriteback, writebackack, writebackdata, writebackaddr, fbdata, fbnextscanline, fbdatavalid, fbpage, shadedata, triID, wantshadedata, shadedataready, texeladdr, texel, wanttexel, texelready, tm3_sram_data_in, tm3_sram_data_out, tm3_sram_addr, tm3_sram_we, tm3_sram_oe, tm3_sram_adsp, globalreset, clk);
+ raysend raysendinst (as01, ack01, addr01, dir01, origx, origy, origz, rgData, rgAddr, rgWE, rgAddrValid, rgDone, globalreset, clk, statepeek2);
- raygencont raygencontinst(go, rgCont[15:1], rgStat[31], cyclecounter, nextaddr01, nas01, nas10, page, dirReadyl, wantDir, dir, address, as01, addr01, ack01, dir01, raygroup01, raygroupvalid01, busy01, raygroup10, raygroupvalid10, busy10, globalreset, tm3_clk_v0, statepeekct);
- resultrecieve resultrecieveinst (valid01, valid10, id01a, id01b, id01c, id10a, id10b, id10c, hit01a, hit01b, hit01c, hit10a, hit10b, hit10c, u01a, u01b, u01c, v01a, v01b, v01c, u10a, u10b, u10c, v10a, v10b, v10c, rgResultData, rgResultReady, rgResultSource, globalreset, tm3_clk_v0);
+ raygencont raygencontinst(go, rgCont[15:1], rgStat[31], cyclecounter, nextaddr01, nas01, nas10, page, dirReadyl, wantDir, dir, address, as01, addr01, ack01, dir01, raygroup01, raygroupvalid01, busy01, raygroup10, raygroupvalid10, busy10, globalreset, clk, statepeekct);
+ resultrecieve resultrecieveinst (valid01, valid10, id01a, id01b, id01c, id10a, id10b, id10c, hit01a, hit01b, hit01c, hit10a, hit10b, hit10c, u01a, u01b, u01c, v01a, v01b, v01c, u10a, u10b, u10c, v10a, v10b, v10c, rgResultData, rgResultReady, rgResultSource, globalreset, clk);
assign debugglobalreset = globalreset | go ;
- resultwriter resultwriteinst (valid01, valid10, id01a, id01b, id01c, id10a, id10b, id10c, hit01a, hit01b, hit01c, hit10a, hit10b, hit10c, u01a, u01b, u01c, v01a, v01b, v01c, u10a, u10b, u10c, v10a, v10b, v10c, nextaddr01, nas01, nas10, bkcolour, shadedata, triID, wantshadedata, shadedataready, texinfo, texaddr, texeladdr, texel, wanttexel, texelready, writebackdata, writebackaddr, wantwriteback, writebackack, debugglobalreset, tm3_clk_v0);
+ resultwriter resultwriteinst (valid01, valid10, id01a, id01b, id01c, id10a, id10b, id10c, hit01a, hit01b, hit01c, hit10a, hit10b, hit10c, u01a, u01b, u01c, v01a, v01b, v01c, u10a, u10b, u10c, v10a, v10b, v10c, nextaddr01, nas01, nas10, bkcolour, shadedata, triID, wantshadedata, shadedataready, texinfo, texaddr, texeladdr, texel, wanttexel, texelready, writebackdata, writebackaddr, wantwriteback, writebackack, debugglobalreset, clk);
assign rgStat[30:0] = cyclecounter ;
endmodule
diff --git a/vtr_flow/tasks/arithmetic_tasks/table_X/config/config.txt b/vtr_flow/tasks/arithmetic_tasks/table_X/config/config.txt
deleted file mode 100644
index ae4c154c4a9..00000000000
--- a/vtr_flow/tasks/arithmetic_tasks/table_X/config/config.txt
+++ /dev/null
@@ -1,41 +0,0 @@
-#
-############################################
-# Configuration file for running experiments
-##############################################
-
-# Path to directory of circuits to use
-circuits_dir=benchmarks/arithmetic/generated_circuits/table_X/verilog
-
-# Path to directory of architectures to use
-archs_dir=arch/COFFE_22nm
-
-# Add circuits to list to sweep
-circuit_list_add=arm_core.v
-circuit_list_add=LU8PEEng.v
-circuit_list_add=mcml.v
-circuit_list_add=or1200.v
-circuit_list_add=sha.v
-circuit_list_add=stereovision2.v
-circuit_list_add=LU32PEEng.v
-circuit_list_add=bgm.v
-circuit_list_add=boundtop.v
-circuit_list_add=blob_merge.v
-circuit_list_add=mkSMAdapter4B.v
-circuit_list_add=raygentop.v
-circuit_list_add=stereovision0.v
-circuit_list_add=stereovision1.v
-
-# Add architectures to list to sweep
-arch_list_add=k6_N8_gate_boost_0.2V_22nm.xml
-arch_list_add=k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml
-arch_list_add=k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml
-arch_list_add=k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml
-arch_list_add=k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml
-
-# Parse info and how to parse
-parse_file=vpr_chain.txt
-
-# Pass requirements
-pass_requirements_file=pass_requirements_chain.txt
-
-script_params=-lut_size 6 -routing_failure_predictor off
diff --git a/vtr_flow/tasks/basic_flow/config/config.txt b/vtr_flow/tasks/basic_flow/config/config.txt
deleted file mode 100644
index 0d743635636..00000000000
--- a/vtr_flow/tasks/basic_flow/config/config.txt
+++ /dev/null
@@ -1,21 +0,0 @@
-##############################################
-# Configuration file for running experiments
-##############################################
-
-# Path to directory of circuits to use
-circuits_dir=benchmarks/verilog
-
-# Path to directory of architectures to use
-archs_dir=arch/timing
-
-# Add circuits to list to sweep
-circuit_list_add=ch_intrinsics.v
-
-# Add architectures to list to sweep
-arch_list_add=k6_frac_N10_mem32K_40nm.xml
-
-# Parse info and how to parse
-parse_file=vpr_standard.txt
-
-# Pass requirements
-pass_requirements_file=pass_requirements.txt
diff --git a/vtr_flow/tasks/basic_flow/config/golden_results.txt b/vtr_flow/tasks/basic_flow/config/golden_results.txt
deleted file mode 100644
index edde206c70f..00000000000
--- a/vtr_flow/tasks/basic_flow/config/golden_results.txt
+++ /dev/null
@@ -1,2 +0,0 @@
-arch circuit vpr_revision vpr_status error num_pre_packed_nets num_pre_packed_blocks num_post_packed_nets num_post_packed_blocks device_width device_height num_clb num_io num_outputs num_memories num_mult placed_wirelength_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est min_chan_width routed_wirelength min_chan_width_route_success_iteration crit_path_routed_wirelength crit_path_route_success_iteration critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile crit_path_routing_area_total crit_path_routing_area_per_tile odin_synth_time abc_synth_time abc_cec_time abc_sec_time ace_time pack_time place_time min_chan_width_route_time crit_path_route_time vtr_flow_elapsed_time max_vpr_mem max_odin_mem max_abc_mem
-k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v 30d086154 success 419 549 298 249 10 10 19 99 130 1 0 2262 2.74023 -250.655 -2.74023 42 2555 15 2250 12 3.5255 -318.677 -3.5255 0 0 3.92691e+06 1.57199e+06 236681. 2366.81 297605. 2976.05 0.03 0.00 -1 -1 -1 0.15 0.27 0.64 0.06 1.70 -1 -1 -1
diff --git a/vtr_flow/tasks/checkin_reg/config/config.txt b/vtr_flow/tasks/checkin_reg/config/config.txt
deleted file mode 100644
index f8a64437c45..00000000000
--- a/vtr_flow/tasks/checkin_reg/config/config.txt
+++ /dev/null
@@ -1,25 +0,0 @@
-##############################################
-# Configuration file for running experiments
-##############################################
-
-# Path to directory of circuits to use
-circuits_dir=benchmarks/verilog
-
-# Path to directory of architectures to use
-archs_dir=arch/timing
-
-# Add circuits to list to sweep
-circuit_list_add=ch_intrinsics.v
-circuit_list_add=diffeq1.v
-
-# Add architectures to list to sweep
-arch_list_add=k6_N10_mem32K_40nm.xml
-
-# Parse info and how to parse
-#parse_file=vpr_memory.txt # for tracking memory usage
-parse_file=vpr_standard.txt
-
-# Pass requirements
-pass_requirements_file=pass_requirements.txt
-
-script_params=-track_memory_usage
diff --git a/vtr_flow/tasks/checkin_reg/config/golden_results.txt b/vtr_flow/tasks/checkin_reg/config/golden_results.txt
deleted file mode 100644
index 301b0f590d0..00000000000
--- a/vtr_flow/tasks/checkin_reg/config/golden_results.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-arch circuit vpr_revision vpr_status error num_pre_packed_nets num_pre_packed_blocks num_post_packed_nets num_post_packed_blocks device_width device_height num_clb num_io num_outputs num_memories num_mult placed_wirelength_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est min_chan_width routed_wirelength min_chan_width_route_success_iteration crit_path_routed_wirelength crit_path_route_success_iteration critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile crit_path_routing_area_total crit_path_routing_area_per_tile odin_synth_time abc_synth_time abc_cec_time abc_sec_time ace_time pack_time place_time min_chan_width_route_time crit_path_route_time vtr_flow_elapsed_time max_vpr_mem max_odin_mem max_abc_mem
-k6_N10_mem32K_40nm.xml ch_intrinsics.v 30d086154 success 419 549 297 254 10 10 24 99 130 1 0 2221 2.62528 -243.1 -2.62528 44 1941 18 1755 17 3.02966 -286.064 -3.02966 0 0 3.92691e+06 1.84146e+06 235874. 2358.74 307351. 3073.51 0.03 0.01 -1 -1 -1 0.11 0.27 0.63 0.07 1.67 25272 9284 36400
-k6_N10_mem32K_40nm.xml diffeq1.v 30d086154 success 1001 938 713 312 16 16 49 162 96 0 5 10746 19.7499 -1523.89 -19.7499 50 10835 24 9313 26 21.7518 -1689.63 -21.7518 0 0 1.21132e+07 4.62081e+06 746321. 2915.31 990901. 3870.71 0.02 0.01 -1 -1 -1 0.30 0.82 2.63 0.61 5.09 38284 8328 37216
diff --git a/vtr_flow/tasks/arithmetic_tasks/cmu_DFT/config/config.txt b/vtr_flow/tasks/cmu_DFT/config/config.txt
similarity index 95%
rename from vtr_flow/tasks/arithmetic_tasks/cmu_DFT/config/config.txt
rename to vtr_flow/tasks/cmu_DFT/config/config.txt
index e8dcb7103f3..17a579dc39d 100644
--- a/vtr_flow/tasks/arithmetic_tasks/cmu_DFT/config/config.txt
+++ b/vtr_flow/tasks/cmu_DFT/config/config.txt
@@ -10,7 +10,7 @@ circuits_dir=benchmarks/arithmetic/generated_circuits/cmu_DFT/verilog
archs_dir=arch/COFFE_22nm
# Add circuits to list to sweep
-
+#Issue 1369 (circuit does not go through odin)
circuit_list_add=64-16bit-fixed-JACM.v
# Add architectures to list to sweep
diff --git a/vtr_flow/tasks/cmu_DFT/config/golden_results.txt b/vtr_flow/tasks/cmu_DFT/config/golden_results.txt
new file mode 100644
index 00000000000..097a8396445
--- /dev/null
+++ b/vtr_flow/tasks/cmu_DFT/config/golden_results.txt
@@ -0,0 +1,6 @@
+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_N8_gate_boost_0.2V_22nm.xml 64-16bit-fixed-JACM.v common 0.02 -1 1060 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 exited with return code 127 unknown unknown unknown unknown betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_weekly -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml 64-16bit-fixed-JACM.v common 0.02 -1 1124 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 exited with return code 127 unknown unknown unknown unknown betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_weekly -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml 64-16bit-fixed-JACM.v common 0.02 -1 996 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 exited with return code 127 unknown unknown unknown unknown betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_weekly -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml 64-16bit-fixed-JACM.v common 0.02 -1 996 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 exited with return code 127 unknown unknown unknown unknown betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_weekly -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml 64-16bit-fixed-JACM.v common 0.05 -1 1000 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 exited with return code 127 unknown unknown unknown unknown betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_weekly -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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/arithmetic_tasks/cmu_DFT_frac/config/config.txt b/vtr_flow/tasks/cmu_DFT_frac/config/config.txt
similarity index 94%
rename from vtr_flow/tasks/arithmetic_tasks/cmu_DFT_frac/config/config.txt
rename to vtr_flow/tasks/cmu_DFT_frac/config/config.txt
index e6508bb3223..162a87f85e7 100644
--- a/vtr_flow/tasks/arithmetic_tasks/cmu_DFT_frac/config/config.txt
+++ b/vtr_flow/tasks/cmu_DFT_frac/config/config.txt
@@ -10,7 +10,7 @@ circuits_dir=benchmarks/arithmetic/generated_circuits/cmu_DFT/verilog
archs_dir=arch/timing/fraclut_carrychain
# Add circuits to list to sweep
-
+#Issue 1369 (circuit does not go through odin)
circuit_list_add=64-16bit-fixed-JACM.v
# Add architectures to list to sweep
diff --git a/vtr_flow/tasks/cmu_DFT_frac/config/golden_results.txt b/vtr_flow/tasks/cmu_DFT_frac/config/golden_results.txt
new file mode 100644
index 00000000000..2c1a23cd5d7
--- /dev/null
+++ b/vtr_flow/tasks/cmu_DFT_frac/config/golden_results.txt
@@ -0,0 +1,6 @@
+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_2ripple_N8_22nm.xml 64-16bit-fixed-JACM.v common 0.01 -1 1056 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 exited with return code 127 unknown unknown unknown unknown betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_weekly -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+k6_frac_2uripple_N8_22nm.xml 64-16bit-fixed-JACM.v common 0.01 -1 1064 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 exited with return code 127 unknown unknown unknown unknown betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_weekly -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+k6_frac_N8_22nm.xml 64-16bit-fixed-JACM.v common 0.03 -1 928 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 exited with return code 127 unknown unknown unknown unknown betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_weekly -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+k6_frac_ripple_N8_22nm.xml 64-16bit-fixed-JACM.v common 0.01 -1 1060 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 exited with return code 127 unknown unknown unknown unknown betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_weekly -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+k6_frac_uripple_N8_22nm.xml 64-16bit-fixed-JACM.v common 0.02 -1 1064 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 exited with return code 127 unknown unknown unknown unknown betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_weekly -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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/power/power_frac_sweep/config/config.txt b/vtr_flow/tasks/power/power_frac_sweep/config/config.txt
index fd2cc834e7b..906f38f0c34 100644
--- a/vtr_flow/tasks/power/power_frac_sweep/config/config.txt
+++ b/vtr_flow/tasks/power/power_frac_sweep/config/config.txt
@@ -29,9 +29,12 @@ circuit_list_add=mkSMAdapter4B.v
circuit_list_add=or1200.v
circuit_list_add=raygentop.v
circuit_list_add=sha.v
-circuit_list_add=stereovision0.v
-circuit_list_add=stereovision1.v
-circuit_list_add=stereovision2.v
+#These circuits do not go through ACE2. It falsely thinks there are multiple clocks in the circuit. There is a bug with using module instantiation by port when two modules have different names for their clocks, in this case instantiation by name must be used. Tried altering the instantiation method & clock names but did not work. This fixed the error for raygentop.v
+
+#circuit_list_add=stereovision0.v
+#circuit_list_add=stereovision1.v
+#circuit_list_add=stereovision2.v
+
#circuit_list_add=stereovision3.v
# Add architectures to list to sweep
@@ -51,7 +54,9 @@ arch_list_add=k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml
arch_list_add=k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml
# Parse info and how to parse
-parse_file=vpr_power_detailed.txt
+#vpr_power_detailed.txt produces incompelete QoR results. (Issue #1749)
+#parse_file=vpr_power_detailed.txt
+parse_file=vpr_power.txt
# Pass requirements
-pass_requirements_file=pass_requirements.txt
+pass_requirements_file=pass_requirements_power.txt
diff --git a/vtr_flow/tasks/power/power_frac_sweep/config/golden_results.txt b/vtr_flow/tasks/power/power_frac_sweep/config/golden_results.txt
new file mode 100644
index 00000000000..b2092d679f2
--- /dev/null
+++ b/vtr_flow/tasks/power/power_frac_sweep/config/golden_results.txt
@@ -0,0 +1,151 @@
+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 total_power routing_power_perc clock_power_perc tile_power_perc
+k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml bgm.v common 1002.76 22.54 392628 22 484.87 -1 -1 152564 -1 -1 2577 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 694504 257 32 32168 31683 1 18846 2877 61 61 3721 clb auto 26.22 248262 66.64 0.46 16.1566 -22531.6 -16.1566 16.1566 32.83 0.0782438 0.0564755 9.8695 7.26509 78 389797 32 2.18169e+08 1.43244e+08 1.95891e+07 5264.48 241.23 42.8957 33.3179 366085 22 98144 432924 25406325 4095083 18.6941 18.6941 -25477 -18.6941 0 0 2.48035e+07 6665.81 7.58 11.18 5.0928 4.31523 0.1661 0.4522 0.02583 0.522
+k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml blob_merge.v common 176.37 0.63 59296 18 83.90 -1 -1 67772 -1 -1 550 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 155232 36 100 6600 6700 1 2867 686 30 30 900 clb auto 5.34 44762 9.99 0.03 8.63778 -2522.46 -8.63778 8.63778 2.18 0.0107005 0.00911638 4.08545 3.08985 68 74187 37 4.8774e+07 2.96417e+07 4.08678e+06 4540.87 48.69 10.2662 8.17288 63873 14 12588 62114 2688244 348253 9.86001 9.86001 -2850.16 -9.86001 0 0 5.07014e+06 5633.48 1.25 2.01 1.28752 1.09941 0.0241 0.394 0.04131 0.5647
+k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml boundtop.v common 5.37 0.73 46996 2 0.43 -1 -1 37096 -1 -1 84 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 66180 114 192 455 647 1 309 390 13 13 169 clb auto 0.07 749 0.36 0.00 1.5681 -199.971 -1.5681 1.5681 0.22 0.000601647 0.000526337 0.101817 0.0892152 38 1909 18 6.63067e+06 4.5271e+06 384612. 2275.81 1.04 0.279876 0.251151 1613 8 646 807 49022 15408 2.13287 2.13287 -254.934 -2.13287 0 0 489150. 2894.38 0.08 0.03 0.0159116 0.0147728 0.006178 0.4297 0.1195 0.4508
+k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.38 0.04 9280 3 0.28 -1 -1 36156 -1 -1 68 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 64924 99 130 363 493 1 256 298 12 12 144 clb auto 0.09 706 0.28 0.00 1.86328 -198.021 -1.86328 1.86328 0.26 0.000421259 0.000369279 0.0776921 0.067166 46 1510 15 5.66058e+06 4.21279e+06 378970. 2631.74 0.92 0.230073 0.203412 1419 13 512 678 54408 17907 2.4649 2.4649 -230.915 -2.4649 0 0 486261. 3376.82 0.08 0.03 0.0158575 0.014549 0.00814 0.2379 0.08094 0.6811
+k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq1.v common 9.29 0.04 9032 15 0.31 -1 -1 34524 -1 -1 39 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 79268 162 96 999 932 1 698 302 16 16 256 mult_36 auto 0.21 5215 0.51 0.01 20.0279 -1731.76 -20.0279 20.0279 0.38 0.00155531 0.00142432 0.216254 0.193862 50 11710 30 1.21132e+07 4.08187e+06 780512. 3048.87 4.81 0.752964 0.684792 9689 15 2920 5783 1711731 425773 22.9164 22.9164 -1951.82 -22.9164 0 0 1.00276e+06 3917.05 0.17 0.31 0.0752097 0.070318 0.007591 0.3632 0.01662 0.6202
+k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq2.v common 10.69 0.03 8228 14 0.27 -1 -1 33500 -1 -1 26 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 69668 66 96 719 590 1 525 195 18 18 324 mult_36 auto 0.17 4839 0.37 0.00 15.5034 -893.993 -15.5034 15.5034 0.53 0.00141581 0.00131375 0.192381 0.17528 50 10126 22 1.57076e+07 4.17324e+06 1.01953e+06 3146.70 6.13 0.675446 0.621617 9219 16 2344 5156 2185950 507264 18.2221 18.2221 -1041.48 -18.2221 0 0 1.31112e+06 4046.65 0.23 0.38 0.0710254 0.0668701 0.009383 0.3437 0.02034 0.6359
+k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml LU8PEEng.v common 908.25 19.48 227544 129 270.75 -1 -1 100788 -1 -1 2016 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 587688 114 102 29578 29304 1 16033 2284 54 54 2916 clb auto 22.87 233317 64.85 0.30 70.0908 -60679 -70.0908 70.0908 22.13 0.0567832 0.0481729 12.0188 9.00221 104 338815 35 1.70873e+08 1.35934e+08 1.97479e+07 6772.27 380.05 43.179 33.7117 315352 20 64444 251879 56108125 13858139 81.2538 81.2538 -73871.7 -81.2538 -12.6553 -0.198548 2.50445e+07 8588.64 6.85 18.80 4.0211 3.34222 0.1065 0.4335 0.01057 0.5559
+k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml LU32PEEng.v common 7372.28 172.34 770504 128 1444.40 -1 -1 298624 -1 -1 6990 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2120044 114 102 102506 101104 1 55876 7405 99 99 9801 clb auto 84.52 1092627 419.60 2.31 70.3702 -351790 -70.3702 70.3702 82.63 0.246403 0.206568 39.4933 29.7667 136 1450816 39 6.00857e+08 4.8087e+08 8.62665e+07 8801.80 4644.97 176.002 138.264 1368556 21 209385 886789 342852879 95079904 79.9323 79.9323 -489293 -79.9323 -31.3319 -0.29436 1.09657e+08 11188.4 32.16 119.24 17.0317 14.2451 0.4236 0.4814 0.009229 0.5093
+k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mcml.v common 10430.62 67.98 954196 75 8216.46 -1 -1 447752 -1 -1 7355 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 1956248 36 33 134466 132924 1 42731 7610 102 102 10404 clb auto 61.48 523379 186.96 1.16 58.9597 -331654 -58.9597 58.9597 80.66 0.171883 0.14394 29.6716 22.3974 82 733160 42 6.36957e+08 4.94176e+08 5.83608e+07 5609.45 1330.09 115.143 91.5627 677500 21 167473 518593 81968438 17553658 64.9338 64.9338 -432445 -64.9338 -0.789768 -0.17036 7.31293e+07 7028.96 21.01 27.00 11.5251 9.93002 0.2977 0.3711 0.0137 0.6152
+k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mkDelayWorker32B.v common 88.17 1.13 78796 5 7.84 -1 -1 52380 -1 -1 456 506 47 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 319280 506 553 3285 3838 1 3022 1562 50 50 2500 memory auto 2.94 15018 5.08 0.04 5.96658 -1843.78 -5.96658 5.96658 19.98 0.0117001 0.0105915 2.55946 2.29342 38 22736 27 1.47946e+08 5.03323e+07 6.86584e+06 2746.33 30.88 7.95399 7.27851 22040 16 4096 5145 3590122 925407 6.60387 6.60387 -2306.35 -6.60387 -4.22558 -0.295467 8.69095e+06 3476.38 2.82 1.11 0.537397 0.504915 0.1833 0.1385 0.03978 0.8217
+k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mkPktMerge.v common 19.63 0.15 16940 2 0.11 -1 -1 33712 -1 -1 26 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 90524 311 156 972 1128 1 953 508 28 28 784 memory auto 0.37 8591 0.85 0.01 3.97992 -4268.71 -3.97992 3.97992 1.70 0.00253628 0.00217037 0.380657 0.318572 38 14938 15 4.25198e+07 9.62124e+06 2.03942e+06 2601.30 10.85 1.67392 1.4808 13839 16 2583 2995 3100698 901390 4.55746 4.55746 -5261.91 -4.55746 -19.8376 -0.322548 2.58559e+06 3297.95 0.59 0.67 0.123316 0.11245 0.08119 0.1583 0.01766 0.824
+k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mkSMAdapter4B.v common 21.17 0.35 31964 7 3.87 -1 -1 37884 -1 -1 168 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 84828 193 205 2232 2437 1 1223 571 20 20 400 memory auto 0.77 9324 1.53 0.01 4.44075 -2589.41 -4.44075 4.44075 0.72 0.00303221 0.00243389 0.551816 0.442021 50 17629 34 2.07112e+07 1.17942e+07 1.26944e+06 3173.59 7.21 1.69816 1.42921 15071 15 4684 11657 1041882 233393 4.99386 4.99386 -3047.65 -4.99386 -9.22808 -0.342703 1.63222e+06 4080.54 0.35 0.33 0.158503 0.144426 0.03046 0.2113 0.02596 0.7628
+k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml or1200.v common 99.03 0.60 40788 27 5.94 -1 -1 43576 -1 -1 246 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 120412 385 394 3979 4310 1 2366 1028 27 27 729 io auto 3.20 30806 3.87 0.03 12.8666 -11507.1 -12.8666 12.8666 2.03 0.0075511 0.00674258 1.26354 1.03844 76 52143 50 3.93038e+07 1.47499e+07 3.58343e+06 4915.54 68.92 5.64705 4.90491 45756 15 10811 38343 4397984 935571 14.4395 14.4395 -12847 -14.4395 0 0 4.48127e+06 6147.14 1.06 1.20 0.40437 0.367076 0.02253 0.4559 0.02645 0.5177
+k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml raygentop.v common 36.54 0.39 32896 8 2.28 -1 -1 40472 -1 -1 135 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 86408 214 305 2625 2741 1 1491 663 22 22 484 mult_36 auto 1.21 12730 1.30 0.01 4.36407 -2392.08 -4.36407 4.36407 1.40 0.0033516 0.00295793 0.43843 0.374985 54 29305 42 2.50602e+07 1.08397e+07 1.67900e+06 3469.01 18.94 2.31966 2.04266 22068 15 6598 15260 3949561 907892 4.97912 4.97912 -3006.33 -4.97912 0 0 2.18083e+06 4505.84 0.67 1.27 0.369355 0.336939 0.02233 0.4743 0.04534 0.4803
+k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml sha.v common 610.83 1.00 38100 20 578.56 -1 -1 95372 -1 -1 229 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 96564 38 36 3404 3440 1 1277 303 20 20 400 clb auto 1.95 14051 1.38 0.01 11.4453 -4263.51 -11.4453 11.4453 0.71 0.00374695 0.00310523 0.565194 0.412245 58 24122 36 2.07112e+07 1.23417e+07 1.47096e+06 3677.41 11.48 2.35911 1.88825 20434 17 5277 21230 697197 117307 13.441 13.441 -4982 -13.441 0 0 1.87544e+06 4688.60 0.54 0.64 0.42543 0.377329 0.01068 0.3887 0.03202 0.5793
+k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml bgm.v common 1040.68 23.05 392528 22 475.66 -1 -1 152596 -1 -1 2534 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 665588 257 32 32168 31683 1 18697 2834 61 61 3721 clb auto 43.28 239189 78.29 0.47 15.1394 -22036.5 -15.1394 15.1394 29.05 0.0776213 0.0559949 10.725 7.86801 74 395213 48 2.18169e+08 1.40926e+08 1.88273e+07 5059.76 243.71 48.3091 37.2718 370803 22 107146 485856 31331160 5117098 17.4479 17.4479 -24951.9 -17.4479 0 0 2.36298e+07 6350.38 10.45 12.43 5.47864 4.5256 0.175 0.4305 0.02616 0.5434
+k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml blob_merge.v common 159.47 0.47 59384 18 86.49 -1 -1 67668 -1 -1 550 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 164392 36 100 6600 6700 1 2867 686 30 30 900 clb auto 4.25 44731 5.20 0.03 8.63778 -2530.1 -8.63778 8.63778 2.05 0.0112514 0.00958131 1.85325 1.36333 70 70174 34 4.8774e+07 2.96417e+07 4.18297e+06 4647.75 41.23 8.26592 6.66257 63426 14 12320 60647 2575666 335184 9.88082 9.88082 -2851.58 -9.88082 0 0 5.26086e+06 5845.40 1.23 1.21 0.704459 0.612258 0.02682 0.3649 0.03866 0.5964
+k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml boundtop.v common 6.31 0.73 47004 2 0.48 -1 -1 37012 -1 -1 84 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 65892 114 192 455 647 1 308 390 13 13 169 clb auto 0.07 702 0.35 0.00 1.76822 -206.093 -1.76822 1.76822 0.22 0.000591869 0.000522888 0.0979778 0.0857395 32 2409 25 6.63067e+06 4.5271e+06 338637. 2003.77 2.04 0.338996 0.302837 1997 10 755 969 83871 24088 2.24565 2.24565 -267.024 -2.24565 0 0 416667. 2465.49 0.07 0.04 0.0181572 0.0167559 0.007386 0.3551 0.08835 0.5566
+k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.79 0.04 9320 3 0.26 -1 -1 36212 -1 -1 68 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 65276 99 130 363 493 1 256 298 12 12 144 clb auto 0.10 706 0.40 0.00 1.86328 -198.021 -1.86328 1.86328 0.29 0.000643968 0.000560498 0.114408 0.0980007 46 1519 11 5.66058e+06 4.21279e+06 378970. 2631.74 1.07 0.279233 0.245477 1428 12 511 676 52183 16991 2.4649 2.4649 -231.983 -2.4649 0 0 486261. 3376.82 0.10 0.04 0.0223096 0.0204609 0.009182 0.2127 0.07176 0.7156
+k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml diffeq1.v common 11.67 0.03 8992 15 0.31 -1 -1 34616 -1 -1 39 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 69396 162 96 999 932 1 698 302 16 16 256 mult_36 auto 0.22 5186 0.51 0.01 19.8574 -1728.41 -19.8574 19.8574 0.38 0.00159443 0.00145294 0.220167 0.19624 46 13257 38 1.21132e+07 4.08187e+06 727248. 2840.81 6.99 0.856436 0.777178 10060 20 3501 7198 2216764 544500 22.9937 22.9937 -2071.29 -22.9937 0 0 934704. 3651.19 0.15 0.39 0.0937929 0.0873896 0.007803 0.3455 0.01615 0.6384
+k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml diffeq2.v common 13.05 0.03 8252 14 0.27 -1 -1 33488 -1 -1 26 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 69908 66 96 719 590 1 525 195 18 18 324 mult_36 auto 0.24 4839 0.68 0.01 15.5034 -893.993 -15.5034 15.5034 0.83 0.00263922 0.002436 0.378697 0.344792 50 10117 32 1.57076e+07 4.17324e+06 1.01953e+06 3146.70 6.73 1.10959 1.02613 9187 14 2283 4942 2077139 480671 18.2254 18.2254 -1042.75 -18.2254 0 0 1.31112e+06 4046.65 0.37 0.61 0.13571 0.127082 0.009843 0.3269 0.01939 0.6537
+k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml LU8PEEng.v common 823.34 21.28 227576 129 258.99 -1 -1 100772 -1 -1 1931 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 581216 114 102 29578 29304 1 15666 2199 53 53 2809 clb auto 46.97 226766 49.63 0.28 71.1556 -52046.2 -71.1556 71.1556 21.32 0.0561452 0.0481311 9.81887 7.35151 104 330947 39 1.63647e+08 1.31353e+08 1.89544e+07 6747.73 310.04 39.0082 30.5478 307540 19 59870 236394 44326539 9442569 80.603 80.603 -65443.5 -80.603 -14.0123 -0.199722 2.40419e+07 8558.89 6.60 13.87 3.85309 3.22672 0.1059 0.4217 0.0102 0.5681
+k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml LU32PEEng.v common 7138.67 174.23 770432 128 1411.01 -1 -1 298444 -1 -1 6828 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2110612 114 102 102506 101104 1 55057 7243 98 98 9604 clb auto 144.75 1051166 439.37 2.35 69.9859 -342159 -69.9859 69.9859 88.60 0.255623 0.215177 41.3557 31.3804 130 1409664 49 5.9175e+08 4.7214e+08 8.10923e+07 8443.60 4338.66 177.271 139.658 1321466 19 208918 879583 344657252 93048329 81.5336 81.5336 -482085 -81.5336 -25.4009 -0.174787 1.02747e+08 10698.3 37.12 127.99 15.7537 13.0896 0.4148 0.4627 0.009068 0.5283
+k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml mcml.v common 10819.41 65.87 954196 75 8500.09 -1 -1 447680 -1 -1 7274 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 1976204 36 33 134466 132924 1 42743 7529 101 101 10201 clb auto 72.55 533607 215.09 1.34 58.6595 -316704 -58.6595 58.6595 82.66 0.175023 0.146843 29.8738 22.6696 98 709704 42 6.22828e+08 4.89811e+08 6.70556e+07 6573.43 1397.71 112.814 89.9346 669625 17 150869 460400 72201835 16088158 65.036 65.036 -427629 -65.036 -0.902525 -0.172573 8.50515e+07 8337.57 26.23 25.59 10.6214 9.20295 0.3206 0.3941 0.01323 0.5927
+k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml mkDelayWorker32B.v common 89.60 1.27 78872 5 12.11 -1 -1 52540 -1 -1 456 506 47 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 319516 506 553 3285 3838 1 3022 1562 50 50 2500 memory auto 4.24 15298 5.02 0.04 7.02477 -1709.13 -7.02477 7.02477 19.67 0.0116121 0.0105271 2.53186 2.26625 38 23449 15 1.47946e+08 5.03323e+07 6.86584e+06 2746.33 26.25 6.69187 6.12353 22457 14 4082 5229 3466017 831227 7.83775 7.83775 -2203.76 -7.83775 -4.28981 -0.29436 8.69095e+06 3476.38 2.43 1.08 0.538142 0.507198 0.1669 0.1388 0.03735 0.8238
+k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml mkPktMerge.v common 23.98 0.14 16892 2 0.12 -1 -1 33708 -1 -1 26 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 90808 311 156 972 1128 1 953 508 28 28 784 memory auto 0.54 8591 1.09 0.01 3.97992 -4268.71 -3.97992 3.97992 2.59 0.00250089 0.00213191 0.505751 0.4236 38 14938 15 4.25198e+07 9.62124e+06 2.03942e+06 2601.30 11.46 1.84619 1.62441 13839 16 2583 2995 3100698 901390 4.55746 4.55746 -5261.91 -4.55746 -19.8376 -0.322548 2.58559e+06 3297.95 0.93 1.18 0.26765 0.243781 0.08517 0.151 0.01684 0.8322
+k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml mkSMAdapter4B.v common 24.74 0.35 31912 7 3.76 -1 -1 37844 -1 -1 168 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 85076 193 205 2232 2437 1 1223 571 20 20 400 memory auto 1.25 9310 3.04 0.02 4.4669 -2540.55 -4.4669 4.4669 1.15 0.00571743 0.00488764 1.34367 1.10222 52 17449 35 2.07112e+07 1.17942e+07 1.31074e+06 3276.84 7.84 2.61177 2.19112 15198 15 4340 10954 982822 221103 5.12885 5.12885 -3020.64 -5.12885 -12.2349 -0.339827 1.72518e+06 4312.96 0.32 0.33 0.168641 0.154031 0.03178 0.2046 0.02577 0.7696
+k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml or1200.v common 96.35 0.58 40836 27 6.34 -1 -1 43860 -1 -1 246 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 113020 385 394 3979 4310 1 2366 1028 27 27 729 io auto 3.17 31037 3.95 0.03 12.8757 -11508.1 -12.8757 12.8757 1.69 0.00843575 0.00754831 1.36757 1.08979 76 51162 24 3.93038e+07 1.47499e+07 3.58343e+06 4915.54 64.31 5.46477 4.68731 45537 15 10693 37866 4156897 836698 14.4539 14.4539 -13086.2 -14.4539 0 0 4.48127e+06 6147.14 1.60 1.43 0.47672 0.434577 0.02397 0.4301 0.02484 0.5451
+k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml raygentop.v common 35.36 0.43 32964 8 2.37 -1 -1 40472 -1 -1 121 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 86652 214 305 2625 2741 1 1452 649 22 22 484 mult_36 auto 3.14 12123 1.40 0.02 4.223 -2309.42 -4.223 4.223 0.94 0.00326817 0.0028736 0.480957 0.411666 54 28937 50 2.50602e+07 1.00852e+07 1.67900e+06 3469.01 17.50 2.0358 1.78875 21891 18 6483 15061 4251231 983489 4.83345 4.83345 -2950.21 -4.83345 0 0 2.18083e+06 4505.84 0.44 0.80 0.203336 0.188312 0.02558 0.431 0.04073 0.5282
+k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml sha.v common 606.05 1.21 38092 20 577.57 -1 -1 95380 -1 -1 229 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 96212 38 36 3404 3440 1 1277 303 20 20 400 clb auto 1.91 14059 1.41 0.01 11.4453 -4263.02 -11.4453 11.4453 0.72 0.00376295 0.00316278 0.572725 0.414586 58 23557 37 2.07112e+07 1.23417e+07 1.47096e+06 3677.41 10.50 2.11003 1.67165 20508 16 5327 20990 694763 117097 13.4365 13.4365 -4952.86 -13.4365 0 0 1.87544e+06 4688.60 0.35 0.39 0.252822 0.220619 0.01144 0.362 0.02989 0.6081
+k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml bgm.v common 1181.39 24.47 392544 22 473.47 -1 -1 152668 -1 -1 2345 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 666064 257 32 32168 31683 1 18764 2645 58 58 3364 clb auto 221.28 251276 63.72 0.44 15.1501 -22514.4 -15.1501 15.1501 26.93 0.065029 0.0555095 9.59417 7.0198 82 395225 43 2.00088e+08 1.30741e+08 1.93983e+07 5766.43 231.04 48.5912 37.8815 359803 21 99560 447880 25645900 4090153 17.4053 17.4053 -25529.7 -17.4053 0 0 2.42718e+07 7215.17 6.98 10.69 5.31108 4.53108 0.1739 0.4283 0.02591 0.5458
+k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml blob_merge.v common 175.58 0.66 59292 18 83.30 -1 -1 67580 -1 -1 500 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 153940 36 100 6600 6700 1 2946 636 29 29 841 clb auto 3.66 44435 9.17 0.07 8.32286 -2555.29 -8.32286 8.32286 1.97 0.0271857 0.0225857 3.80384 2.89928 74 67503 29 4.4999e+07 2.6947e+07 4.23731e+06 5038.42 51.80 9.30566 7.45811 63977 15 12991 61958 2915121 392494 9.30361 9.30361 -2894.94 -9.30361 0 0 5.30054e+06 6302.67 1.25 2.00 1.21236 1.05227 0.02539 0.3892 0.04057 0.5702
+k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml boundtop.v common 6.08 0.80 46924 2 0.53 -1 -1 36952 -1 -1 84 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 66280 114 192 455 647 1 310 390 13 13 169 clb auto 0.11 790 0.36 0.00 1.80614 -224.107 -1.80614 1.80614 0.23 0.000580251 0.000516503 0.0986071 0.0861875 34 2159 20 6.63067e+06 4.5271e+06 371447. 2197.91 1.27 0.32411 0.289802 1907 11 703 881 67177 20027 2.1809 2.1809 -278.687 -2.1809 0 0 455630. 2696.04 0.12 0.06 0.0331406 0.0306433 0.00638 0.4368 0.1091 0.4541
+k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.80 0.05 9236 3 0.19 -1 -1 36092 -1 -1 67 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 65008 99 130 363 493 1 260 297 12 12 144 clb auto 0.09 675 0.40 0.00 2.00877 -201.35 -2.00877 2.00877 0.27 0.000680181 0.000592067 0.112979 0.0973247 38 1473 10 5.66058e+06 4.1589e+06 334530. 2323.13 1.26 0.280453 0.247349 1335 10 553 758 61612 21978 2.6329 2.6329 -244.597 -2.6329 0 0 424691. 2949.24 0.07 0.03 0.013767 0.012696 0.007549 0.2162 0.07456 0.7092
+k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 13.07 0.04 9072 15 0.44 -1 -1 34580 -1 -1 39 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 77748 162 96 999 932 1 692 302 16 16 256 mult_36 auto 0.37 5373 0.92 0.01 19.7363 -1627.73 -19.7363 19.7363 0.64 0.00292549 0.00267251 0.411484 0.369838 46 12874 47 1.21132e+07 4.08187e+06 761464. 2974.47 6.75 1.06299 0.964377 10002 17 3162 6591 1782591 439893 22.2465 22.2465 -1848.32 -22.2465 0 0 979054. 3824.43 0.17 0.32 0.0845966 0.0765815 0.00796 0.3487 0.01638 0.6349
+k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml diffeq2.v common 16.76 0.03 8272 14 0.34 -1 -1 33504 -1 -1 25 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 70400 66 96 719 590 1 524 194 18 18 324 mult_36 auto 0.25 4925 0.67 0.01 15.6681 -903.528 -15.6681 15.6681 0.88 0.00255427 0.00236338 0.366868 0.333668 38 12760 39 1.57076e+07 4.11935e+06 845836. 2610.61 10.84 1.09936 1.00938 10508 18 3040 6848 3114089 727865 17.9693 17.9693 -1068.61 -17.9693 0 0 1.07007e+06 3302.70 0.21 0.50 0.0774727 0.0726942 0.009498 0.3135 0.0186 0.6679
+k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1120.11 21.20 227572 129 268.92 -1 -1 100756 -1 -1 1868 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 594952 114 102 29578 29304 1 16000 2136 53 53 2809 clb auto 217.78 230748 40.68 0.25 70.1304 -57189.4 -70.1304 70.1304 21.53 0.0551141 0.0467024 9.03306 6.53231 104 329568 37 1.63647e+08 1.27957e+08 1.98011e+07 7049.16 418.64 42.2079 32.4939 309156 21 56547 227343 44578169 9731182 79.4515 79.4515 -72626.4 -79.4515 -15.5633 -0.195443 2.50370e+07 8913.15 8.63 16.15 5.11072 4.29825 0.1109 0.4141 0.01029 0.5756
+k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml LU32PEEng.v common 8116.76 173.32 770500 128 1450.19 -1 -1 298624 -1 -1 6391 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2155012 114 102 102506 101104 1 55733 6806 95 95 9025 clb auto 792.25 1102196 442.88 2.31 68.524 -347692 -68.524 68.524 77.13 0.257903 0.217993 42.7717 32.3413 146 1427530 29 5.4965e+08 4.48591e+08 8.83092e+07 9784.95 4627.12 182.251 142.54 1347154 17 192439 813806 314654531 82561783 79.0174 79.0174 -492716 -79.0174 -22.5982 -0.17036 1.11495e+08 12354.0 33.89 110.16 14.0425 11.8209 0.4416 0.471 0.008853 0.5202
+k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml mcml.v common 10796.38 64.23 954184 75 8587.36 -1 -1 447716 -1 -1 7136 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 1973040 36 33 134466 132924 1 42717 7391 100 100 10000 clb auto 196.13 542750 217.36 1.33 58.0539 -310419 -58.0539 58.0539 83.70 0.179326 0.150688 32.1274 24.5147 88 724422 37 6.13558e+08 4.82374e+08 6.27618e+07 6276.18 1161.46 104.801 83.4121 684352 17 149681 478782 74258807 15951626 65.1163 65.1163 -392508 -65.1163 0 0 7.84826e+07 7848.26 23.08 25.20 10.7137 9.28463 0.3168 0.364 0.01354 0.6224
+k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml mkDelayWorker32B.v common 92.63 1.18 78788 5 8.70 -1 -1 52352 -1 -1 460 506 47 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 361816 506 553 3285 3838 1 3007 1566 50 50 2500 memory auto 3.84 14641 5.09 0.04 6.35472 -1709.62 -6.35472 6.35472 20.42 0.0114079 0.0103359 2.54816 2.27727 38 22446 14 1.47946e+08 5.05479e+07 7.24780e+06 2899.12 34.36 7.74711 7.10432 21465 15 3947 5012 3336726 780964 7.43604 7.43604 -2291.08 -7.43604 -0.926108 -0.154403 9.14532e+06 3658.13 2.62 1.00 0.510848 0.479653 0.1684 0.1408 0.04125 0.818
+k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml mkPktMerge.v common 20.89 0.11 16940 2 0.13 -1 -1 33716 -1 -1 25 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 91688 311 156 972 1128 1 953 507 28 28 784 memory auto 0.50 7715 0.86 0.01 3.72374 -4124.89 -3.72374 3.72374 1.92 0.00258831 0.00218041 0.385371 0.320974 38 14448 23 4.25198e+07 9.56735e+06 2.14815e+06 2739.98 10.57 1.36765 1.19069 13075 13 2700 3029 2297690 666223 4.2709 4.2709 -4933.75 -4.2709 -19.7413 -0.360359 2.71544e+06 3463.57 0.81 0.54 0.102904 0.0939066 0.08673 0.1536 0.01777 0.8286
+k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml mkSMAdapter4B.v common 24.50 0.36 31940 7 3.80 -1 -1 37864 -1 -1 162 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 94420 193 205 2232 2437 1 1246 565 20 20 400 memory auto 1.69 9305 1.65 0.01 4.64276 -2579.48 -4.64276 4.64276 0.75 0.00285625 0.002444 0.583531 0.475146 50 17912 47 2.07112e+07 1.14708e+07 1.33094e+06 3327.34 8.82 1.94256 1.66365 15134 15 4408 10763 964401 223234 5.27544 5.27544 -3056.96 -5.27544 -6.53042 -0.299894 1.71179e+06 4279.48 0.48 0.63 0.361472 0.327998 0.02957 0.2116 0.02534 0.7631
+k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml or1200.v common 78.02 0.59 40844 27 5.65 -1 -1 43836 -1 -1 219 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 125584 385 394 3979 4310 1 2379 1001 27 27 729 io auto 2.65 31850 3.64 0.03 12.8393 -11113 -12.8393 12.8393 1.73 0.00720515 0.00645104 1.18873 0.991299 84 53122 50 3.93038e+07 1.32948e+07 4.08017e+06 5596.94 48.84 4.93799 4.31621 46266 13 10118 36835 3273609 633345 14.7588 14.7588 -12867 -14.7588 0 0 5.17499e+06 7098.75 1.89 1.06 0.38762 0.355212 0.02453 0.4584 0.02668 0.5149
+k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml raygentop.v common 43.73 0.45 32876 8 2.29 -1 -1 40396 -1 -1 134 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 87100 214 305 2625 2741 1 1510 662 22 22 484 mult_36 auto 16.44 12485 1.52 0.01 4.47648 -2445.68 -4.47648 4.47648 0.98 0.00328965 0.00290216 0.520609 0.446436 48 28763 44 2.50602e+07 1.07858e+07 1.59437e+06 3294.16 12.39 1.74353 1.53118 22364 15 6216 13503 3819992 817185 5.30831 5.30831 -3092.16 -5.30831 0 0 2.04427e+06 4223.70 0.40 0.88 0.232959 0.215715 0.02167 0.4611 0.0416 0.4973
+k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml sha.v common 631.70 1.07 38008 20 597.99 -1 -1 95324 -1 -1 213 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 95568 38 36 3404 3440 1 1383 287 19 19 361 clb auto 1.69 14277 1.41 0.01 11.6767 -4084.53 -11.6767 11.6767 0.65 0.00475767 0.00396084 0.580303 0.426071 58 23260 33 1.72706e+07 1.14794e+07 1.39531e+06 3865.12 13.19 3.54284 2.94459 19956 15 4801 18065 573853 101241 14.3234 14.3234 -4727.14 -14.3234 0 0 1.77306e+06 4911.54 0.51 0.68 0.500405 0.445919 0.01059 0.3583 0.02666 0.6151
+k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml bgm.v common 1217.37 24.53 392596 22 477.97 -1 -1 152624 -1 -1 2314 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 673080 257 32 32168 31683 1 18525 2614 58 58 3364 clb auto 266.29 241092 57.27 0.41 16.2997 -21869.6 -16.2997 16.2997 26.69 0.0653832 0.0553988 9.47059 6.91806 86 361657 28 2.00088e+08 1.2907e+08 2.02792e+07 6028.31 222.23 46.425 36.5657 344327 21 86056 395038 21122699 3379353 19.1058 19.1058 -24924.5 -19.1058 0 0 2.56050e+07 7611.48 7.46 9.69 4.83221 4.07679 0.1744 0.4163 0.02461 0.5591
+k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml blob_merge.v common 159.33 0.54 59324 18 78.42 -1 -1 67564 -1 -1 499 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 155524 36 100 6600 6700 1 2936 635 29 29 841 clb auto 3.30 46229 6.16 0.03 8.40852 -2603.38 -8.40852 8.40852 2.73 0.0105882 0.00907557 2.27992 1.72051 76 68701 28 4.4999e+07 2.68931e+07 4.31509e+06 5130.91 45.96 7.18288 5.75326 64084 15 12481 61473 2744401 364670 9.93273 9.93273 -2924.03 -9.93273 0 0 5.38156e+06 6399.00 1.82 1.40 0.79591 0.696069 0.02723 0.3594 0.03588 0.6047
+k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml boundtop.v common 6.84 0.76 47068 2 0.45 -1 -1 37040 -1 -1 84 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 66292 114 192 455 647 1 308 390 13 13 169 clb auto 0.18 729 0.57 0.00 1.8593 -228.354 -1.8593 1.8593 0.34 0.00097119 0.000851272 0.16511 0.143083 32 2259 24 6.63067e+06 4.5271e+06 356714. 2110.73 1.69 0.424623 0.377137 2013 12 749 944 89367 27197 2.46866 2.46866 -282.119 -2.46866 0 0 437048. 2586.08 0.11 0.06 0.0350527 0.0322987 0.006989 0.3482 0.08605 0.5657
+k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 4.36 0.05 9236 3 0.29 -1 -1 36096 -1 -1 67 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 72636 99 130 363 493 1 260 297 12 12 144 clb auto 0.10 675 0.42 0.00 2.00877 -201.35 -2.00877 2.00877 0.29 0.000718403 0.000623601 0.119834 0.102871 38 1476 10 5.66058e+06 4.1589e+06 334530. 2323.13 1.45 0.330145 0.291248 1339 10 531 709 60504 21675 2.6329 2.6329 -240.581 -2.6329 0 0 424691. 2949.24 0.10 0.05 0.0223991 0.0206012 0.008522 0.1913 0.06605 0.7426
+k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 12.32 0.04 9024 15 0.45 -1 -1 34644 -1 -1 39 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 70088 162 96 999 932 1 692 302 16 16 256 mult_36 auto 0.29 5373 0.54 0.01 19.7363 -1627.54 -19.7363 19.7363 0.40 0.0015933 0.00145946 0.22656 0.203345 48 12242 28 1.21132e+07 4.08187e+06 791884. 3093.30 6.54 0.884932 0.804179 9857 17 3022 6181 1681171 422674 22.2387 22.2387 -1852.74 -22.2387 0 0 1.01413e+06 3961.44 0.29 0.51 0.159736 0.148902 0.008288 0.3389 0.01598 0.6451
+k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml diffeq2.v common 14.97 0.03 8168 14 0.33 -1 -1 33484 -1 -1 25 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 70540 66 96 719 590 1 524 194 18 18 324 mult_36 auto 0.25 4925 0.67 0.01 15.6681 -903.528 -15.6681 15.6681 0.87 0.00265058 0.00245439 0.371409 0.338242 38 13260 43 1.57076e+07 4.11935e+06 845836. 2610.61 9.10 1.04649 0.958821 10497 22 3161 7109 3098852 717947 18.117 18.117 -1072.84 -18.117 0 0 1.07007e+06 3302.70 0.21 0.48 0.0861849 0.0804818 0.009917 0.2986 0.01768 0.6837
+k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 1297.34 21.57 227604 129 271.87 -1 -1 100868 -1 -1 1784 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 583784 114 102 29578 29304 1 15505 2052 51 51 2601 clb auto 298.41 222958 46.96 0.26 69.0898 -53657.1 -69.0898 69.0898 23.80 0.054155 0.0462495 9.23986 6.74149 102 321631 32 1.52527e+08 1.2343e+08 1.80757e+07 6949.52 515.86 38.121 29.5559 296261 16 56431 224378 40764853 8622281 78.6777 78.6777 -67908.8 -78.6777 -30.3109 -0.224738 2.25881e+07 8684.41 9.30 15.32 4.12465 3.49351 0.1073 0.3906 0.009672 0.5997
+k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml LU32PEEng.v common 7248.49 169.94 770472 128 1457.71 -1 -1 298612 -1 -1 6249 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2140328 114 102 102506 101104 1 54017 6664 94 94 8836 clb auto 1206.71 1064569 429.60 2.45 67.0299 -313148 -67.0299 67.0299 77.33 0.317171 0.225623 43.0633 32.2968 144 1379618 27 5.40921e+08 4.40939e+08 8.54134e+07 9666.52 3392.49 167.84 132.268 1310115 20 187972 803324 216756823 50873205 79.8846 79.8846 -444059 -79.8846 -26.1439 -0.17036 1.08076e+08 12231.4 34.19 78.11 16.402 13.7655 0.4375 0.4598 0.008792 0.5315
+k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml mcml.v common 11453.62 64.01 954232 75 8679.08 -1 -1 447760 -1 -1 7022 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 1989484 36 33 134466 132924 1 42685 7277 99 99 9801 clb auto 191.52 534130 230.93 1.38 57.4075 -283568 -57.4075 57.4075 81.76 0.178297 0.149193 30.4038 23.1723 88 729905 42 6.00857e+08 4.76231e+08 6.17045e+07 6295.73 1700.99 116.087 92.5918 678806 18 150637 476867 82256718 19013850 63.714 63.714 -376739 -63.714 0 0 7.71549e+07 7872.14 22.71 28.76 10.7709 9.27066 0.3237 0.3509 0.01317 0.6359
+k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml mkDelayWorker32B.v common 103.88 1.14 78768 5 10.73 -1 -1 52420 -1 -1 460 506 47 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 360664 506 553 3285 3838 1 3007 1566 50 50 2500 memory auto 4.26 14644 7.64 0.04 6.3517 -1707.14 -6.3517 6.3517 24.25 0.0121372 0.0109307 3.95176 3.50929 38 22292 17 1.47946e+08 5.05479e+07 7.24780e+06 2899.12 31.89 8.36125 7.59484 21543 14 3915 4979 3282131 780594 7.43604 7.43604 -2256.29 -7.43604 -1.52834 -0.197508 9.14532e+06 3658.13 3.62 1.69 0.963556 0.909275 0.1774 0.134 0.03946 0.8265
+k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml mkPktMerge.v common 24.04 0.15 17084 2 0.11 -1 -1 33632 -1 -1 25 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 91452 311 156 972 1128 1 953 507 28 28 784 memory auto 0.51 7715 1.44 0.01 3.72374 -4124.89 -3.72374 3.72374 2.01 0.00464022 0.00409477 0.687104 0.586876 38 14419 30 4.25198e+07 9.56735e+06 2.14815e+06 2739.98 12.09 1.81005 1.58322 13193 16 2769 3131 2483040 713517 4.2709 4.2709 -5029.91 -4.2709 -17.907 -0.360359 2.71544e+06 3463.57 1.00 0.85 0.215727 0.198395 0.09107 0.1475 0.01692 0.8356
+k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml mkSMAdapter4B.v common 25.94 0.27 31920 7 3.80 -1 -1 37848 -1 -1 161 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 84688 193 205 2232 2437 1 1246 564 20 20 400 memory auto 2.20 9258 1.64 0.01 4.81139 -2626.5 -4.81139 4.81139 0.74 0.00317824 0.00250505 0.599371 0.481259 48 17624 38 2.07112e+07 1.14169e+07 1.28923e+06 3223.08 10.30 2.03337 1.72605 14975 15 4347 10898 1069816 252269 5.41651 5.41651 -3112.77 -5.41651 -7.45564 -0.360359 1.65199e+06 4129.98 0.33 0.33 0.159081 0.145467 0.03063 0.1998 0.02435 0.7759
+k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml or1200.v common 71.29 0.58 40828 27 4.90 -1 -1 43880 -1 -1 220 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 121604 385 394 3979 4310 1 2359 1002 27 27 729 io auto 2.00 30963 3.67 0.03 12.7491 -11216.3 -12.7491 12.7491 1.79 0.00728249 0.00647447 1.20087 0.995382 88 48009 21 3.93038e+07 1.33487e+07 4.27697e+06 5866.91 45.38 4.33212 3.75782 43930 14 9510 34149 2707867 507719 14.2116 14.2116 -12460.1 -14.2116 0 0 5.34918e+06 7337.69 1.25 0.87 0.39015 0.358112 0.02654 0.4372 0.026 0.5368
+k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml raygentop.v common 55.32 0.42 32912 8 2.24 -1 -1 40404 -1 -1 113 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 86496 214 305 2625 2741 1 1473 641 22 22 484 mult_36 auto 25.74 12370 1.36 0.01 4.56906 -2397.02 -4.56906 4.56906 0.99 0.00342672 0.0029994 0.46806 0.40141 50 29306 44 2.50602e+07 9.65402e+06 1.64647e+06 3401.80 14.98 1.82029 1.6021 22308 16 6845 15410 4107384 894113 5.18734 5.18734 -3074.17 -5.18734 0 0 2.11872e+06 4377.53 0.51 0.77 0.181235 0.167199 0.02451 0.4167 0.03681 0.5465
+k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml sha.v common 637.15 1.26 38008 20 603.42 -1 -1 95324 -1 -1 213 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 96040 38 36 3404 3440 1 1383 287 19 19 361 clb auto 2.64 14280 3.12 0.03 11.6767 -4085.96 -11.6767 11.6767 1.06 0.0153279 0.0125046 1.65754 1.2701 58 22805 25 1.72706e+07 1.14794e+07 1.39531e+06 3865.12 9.95 3.77479 3.04945 19909 13 4890 18368 581803 103288 14.3124 14.3124 -4679.57 -14.3124 0 0 1.77306e+06 4911.54 0.51 0.54 0.366833 0.32506 0.0113 0.3352 0.02499 0.6399
+k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml bgm.v common 1221.30 24.12 392608 22 480.45 -1 -1 152576 -1 -1 2253 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 683908 257 32 32168 31683 1 18492 2553 57 57 3249 clb auto 287.15 239337 61.82 0.44 15.704 -22058.9 -15.704 15.704 31.14 0.0662641 0.0568913 9.13628 6.75197 86 356705 27 1.92089e+08 1.25783e+08 2.02721e+07 6239.50 197.62 45.7374 35.8284 342348 20 90270 421902 21014520 3300150 18.1745 18.1745 -24741.5 -18.1745 0 0 2.55219e+07 7855.31 7.22 10.07 5.04028 4.28249 0.1796 0.4112 0.02507 0.5638
+k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml blob_merge.v common 161.69 0.64 59348 18 82.80 -1 -1 67720 -1 -1 485 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 149720 36 100 6600 6700 1 2880 621 28 28 784 clb auto 2.88 43515 5.80 0.06 8.62998 -2513.26 -8.62998 8.62998 1.86 0.022145 0.0192583 2.14425 1.61478 74 65638 26 4.25198e+07 2.61386e+07 4.08173e+06 5206.29 46.05 7.98563 6.44816 62366 16 12372 61865 2859337 384702 9.91777 9.91777 -2823.75 -9.91777 0 0 5.09318e+06 6496.41 1.17 1.28 0.744226 0.650584 0.02548 0.3665 0.0371 0.5964
+k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml boundtop.v common 8.47 0.77 47068 2 0.54 -1 -1 36964 -1 -1 84 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 68696 114 192 455 647 1 311 390 13 13 169 clb auto 0.19 746 0.57 0.00 1.71359 -213.575 -1.71359 1.71359 0.38 0.000980359 0.000841332 0.165065 0.141428 32 2335 21 6.63067e+06 4.5271e+06 371962. 2200.96 2.71 0.4488 0.39658 1971 11 735 910 81584 24634 2.27167 2.27167 -270.615 -2.27167 0 0 454532. 2689.54 0.13 0.06 0.0293021 0.0269594 0.006179 0.4345 0.1069 0.4586
+k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 4.34 0.05 9320 3 0.20 -1 -1 36188 -1 -1 67 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 69708 99 130 363 493 1 270 297 12 12 144 clb auto 0.09 673 0.44 0.00 2.164 -202.469 -2.164 2.164 0.30 0.000705344 0.000613722 0.124627 0.107405 46 1405 9 5.66058e+06 4.1589e+06 410918. 2853.60 1.42 0.320993 0.284163 1230 9 498 669 35676 12294 2.57245 2.57245 -231.014 -2.57245 0 0 527087. 3660.32 0.12 0.04 0.0205929 0.0187628 0.007808 0.2158 0.08187 0.7024
+k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 13.40 0.04 9068 15 0.44 -1 -1 34584 -1 -1 38 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 77860 162 96 999 932 1 693 301 16 16 256 mult_36 auto 0.35 5507 0.94 0.01 19.5255 -1806.49 -19.5255 19.5255 0.64 0.00331094 0.00305055 0.450734 0.403764 46 12593 24 1.21132e+07 4.02797e+06 791147. 3090.42 6.69 1.19375 1.08161 10069 17 3091 6232 1654128 410178 22.1276 22.1276 -2083.68 -22.1276 0 0 1.01637e+06 3970.19 0.27 0.56 0.178185 0.165186 0.008091 0.351 0.01632 0.6327
+k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml diffeq2.v common 14.04 0.02 8168 14 0.32 -1 -1 33528 -1 -1 26 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 70440 66 96 719 590 1 523 195 18 18 324 mult_36 auto 0.28 4952 0.52 0.00 15.4468 -901.287 -15.4468 15.4468 0.94 0.00143027 0.001315 0.285959 0.25945 40 11980 29 1.57076e+07 4.17324e+06 920257. 2840.30 8.34 0.97647 0.897134 9779 20 2928 6313 2637988 646739 17.5344 17.5344 -1070.48 -17.5344 0 0 1.14782e+06 3542.67 0.27 0.44 0.0820273 0.076787 0.009635 0.3116 0.0193 0.6691
+k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1374.24 21.26 227568 129 274.63 -1 -1 100800 -1 -1 1786 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 608728 114 102 29578 29304 1 15914 2054 51 51 2601 clb auto 310.25 226905 51.64 0.39 71.5324 -58921.3 -71.5324 71.5324 23.58 0.0569994 0.0486368 9.98708 7.35392 104 318263 24 1.52527e+08 1.23538e+08 1.90821e+07 7336.47 571.56 38.5855 30.0272 300595 17 54490 217005 42035673 9339309 81.2082 81.2082 -74009.6 -81.2082 -15.0344 -0.293253 2.40571e+07 9249.19 7.92 13.60 3.65981 3.09124 0.1125 0.3936 0.009782 0.5966
+k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml LU32PEEng.v common 12310.80 171.58 770424 128 1417.96 -1 -1 298664 -1 -1 6121 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2074256 114 102 102506 101104 1 55470 6536 93 93 8649 clb auto 1114.66 1073314 444.95 2.26 69.3448 -364222 -69.3448 69.3448 104.87 0.26502 0.223286 44.2875 33.3703 144 1365821 27 5.27943e+08 4.34041e+08 8.63091e+07 9979.09 8543.43 148.506 116.583 1312101 15 182432 775722 260137364 67131395 79.5166 79.5166 -510447 -79.5166 -15.1997 -0.292146 1.08967e+08 12598.8 33.61 86.46 13.1618 11.2394 0.4521 0.451 0.008629 0.5403
+k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml mcml.v common 11651.99 64.61 954104 75 8743.03 -1 -1 447660 -1 -1 7024 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2062444 36 33 134466 132924 1 42791 7279 99 99 9801 clb auto 251.70 537473 254.05 1.47 63.3349 -303776 -63.3349 63.3349 100.89 0.180296 0.151669 31.6633 24.4528 96 725773 33 6.00857e+08 4.76339e+08 6.91956e+07 7060.06 1730.03 110.224 88.1187 675091 18 131170 422091 77870838 17996232 69.7037 69.7037 -373015 -69.7037 0 0 8.60677e+07 8781.52 26.53 28.40 11.0399 9.57173 0.329 0.3717 0.01298 0.6153
+k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml mkDelayWorker32B.v common 94.31 0.83 78820 5 10.54 -1 -1 52512 -1 -1 453 506 47 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 386880 506 553 3285 3838 1 2969 1559 50 50 2500 memory auto 3.06 15435 5.06 0.04 6.15487 -1682.67 -6.15487 6.15487 22.68 0.011947 0.0108465 2.57332 2.30799 36 23106 18 1.47946e+08 5.01706e+07 7.25136e+06 2900.55 31.33 7.08088 6.48915 22451 13 3884 4948 3447340 826262 6.78003 6.78003 -2151.51 -6.78003 -0.939054 -0.0653942 8.87017e+06 3548.07 2.71 0.96 0.462623 0.436411 0.1823 0.1372 0.04447 0.8183
+k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml mkPktMerge.v common 26.22 0.14 16944 2 0.14 -1 -1 33748 -1 -1 24 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 91552 311 156 972 1128 1 953 506 28 28 784 memory auto 0.39 8158 0.83 0.01 3.82423 -4254.6 -3.82423 3.82423 1.90 0.00256777 0.00217817 0.373744 0.313918 38 14729 23 4.25198e+07 9.51346e+06 2.24090e+06 2858.29 16.27 2.01177 1.78283 13538 14 2698 3083 3173810 916654 4.43964 4.43964 -5125.3 -4.43964 -13.3623 -0.360359 2.82381e+06 3601.80 0.70 0.73 0.112227 0.101913 0.08411 0.1597 0.01778 0.8226
+k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml mkSMAdapter4B.v common 25.57 0.37 31892 7 2.83 -1 -1 37648 -1 -1 155 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 85328 193 205 2232 2437 1 1252 558 20 20 400 memory auto 2.02 9611 1.59 0.01 4.58123 -2648.16 -4.58123 4.58123 0.79 0.00288926 0.00240252 0.571909 0.461618 54 18994 45 2.07112e+07 1.10936e+07 1.47948e+06 3698.71 10.89 1.91649 1.62341 15500 16 4220 10222 1006458 225218 5.42868 5.42868 -3143.52 -5.42868 -6.62241 -0.298787 1.92123e+06 4803.07 0.56 0.59 0.332034 0.306207 0.0297 0.2242 0.02687 0.7489
+k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml or1200.v common 77.07 0.50 40860 27 5.48 -1 -1 43692 -1 -1 209 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 124100 385 394 3979 4310 1 2355 991 27 27 729 io auto 2.29 31126 3.46 0.03 12.3286 -11111.9 -12.3286 12.3286 1.75 0.00737661 0.00653218 1.153 0.957859 86 50104 23 3.93038e+07 1.27558e+07 4.33954e+06 5952.73 50.13 5.13269 4.46135 44797 15 10022 35542 3186082 599895 13.8477 13.8477 -12945.6 -13.8477 0 0 5.45685e+06 7485.39 1.26 0.99 0.418217 0.378548 0.02609 0.4526 0.02706 0.5204
+k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml raygentop.v common 41.43 0.41 32900 8 1.41 -1 -1 40504 -1 -1 131 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 87304 214 305 2625 2741 1 1516 659 22 22 484 mult_36 auto 14.04 12379 1.52 0.02 4.47648 -2408.37 -4.47648 4.47648 1.02 0.00445537 0.00397044 0.525065 0.45193 48 28218 44 2.50602e+07 1.06241e+07 1.65992e+06 3429.59 15.03 1.94138 1.70365 21808 16 6246 13552 4472971 963087 5.11979 5.11979 -3084.59 -5.11979 0 0 2.12755e+06 4395.76 0.46 0.83 0.1752 0.162222 0.02209 0.4489 0.04261 0.5085
+k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml sha.v common 691.11 0.85 38060 20 658.19 -1 -1 95332 -1 -1 208 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 95452 38 36 3404 3440 1 1363 282 19 19 361 clb auto 3.23 14310 1.42 0.01 11.4448 -4167.06 -11.4448 11.4448 1.03 0.00375423 0.00317596 0.600228 0.433893 62 22568 35 1.72706e+07 1.121e+07 1.55602e+06 4310.31 13.33 2.34807 1.8908 20017 15 4912 18729 616324 108834 14.4159 14.4159 -4892.16 -14.4159 0 0 1.91774e+06 5312.30 0.54 0.75 0.563053 0.501836 0.0113 0.3528 0.02463 0.6226
+k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml bgm.v common 1276.56 21.21 392552 22 491.36 -1 -1 152576 -1 -1 2204 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 686036 257 32 32168 31683 1 18177 2504 57 57 3249 clb auto 347.07 233550 65.75 0.45 16.384 -22388.4 -16.384 16.384 30.68 0.0767252 0.0554301 9.80142 7.19084 80 356753 46 1.92089e+08 1.23142e+08 1.90152e+07 5852.64 185.97 46.3457 36.6181 326268 17 82779 392836 20839749 3569589 18.5737 18.5737 -25173.7 -18.5737 0 0 2.38713e+07 7347.27 7.39 10.06 4.71344 3.92941 0.179 0.3848 0.024 0.5912
+k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml blob_merge.v common 169.36 0.44 59352 18 85.82 -1 -1 67560 -1 -1 485 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 150804 36 100 6600 6700 1 2880 621 28 28 784 clb auto 2.91 43515 6.41 0.03 8.62998 -2513.26 -8.62998 8.62998 1.95 0.010358 0.0087404 2.5467 1.84942 74 65909 21 4.25198e+07 2.61386e+07 4.08173e+06 5206.29 50.65 7.94774 6.29358 62376 15 12236 61472 2826360 380833 9.92551 9.92551 -2839.25 -9.92551 0 0 5.09318e+06 6496.41 1.21 1.24 0.726799 0.640663 0.02742 0.3379 0.03444 0.6276
+k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml boundtop.v common 6.77 0.75 47052 2 0.46 -1 -1 37036 -1 -1 84 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 66760 114 192 455 647 1 309 390 13 13 169 clb auto 0.22 786 0.35 0.00 1.62367 -209.249 -1.62367 1.62367 0.27 0.00059276 0.000522521 0.0994337 0.0870675 34 2163 21 6.63067e+06 4.5271e+06 387186. 2291.04 1.93 0.338958 0.303499 1746 9 639 777 49154 15300 2.38282 2.38282 -258.928 -2.38282 0 0 473733. 2803.16 0.11 0.04 0.0242678 0.0224952 0.007175 0.3398 0.08992 0.5703
+k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.48 0.05 9352 3 0.31 -1 -1 36068 -1 -1 67 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 70120 99 130 363 493 1 270 297 12 12 144 clb auto 0.09 673 0.27 0.00 2.164 -202.469 -2.164 2.164 0.20 0.000423266 0.000369371 0.0747635 0.064661 46 1402 10 5.66058e+06 4.1589e+06 410918. 2853.60 0.96 0.19087 0.168806 1225 9 503 682 36059 12370 2.57245 2.57245 -227.411 -2.57245 0 0 527087. 3660.32 0.09 0.03 0.0150451 0.0139385 0.008795 0.1903 0.07268 0.7371
+k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 10.66 0.03 9040 15 0.33 -1 -1 34516 -1 -1 38 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 70424 162 96 999 932 1 695 301 16 16 256 mult_36 auto 0.23 5404 0.53 0.01 19.7791 -1799.73 -19.7791 19.7791 0.42 0.001581 0.00144778 0.22719 0.203803 46 12385 45 1.21132e+07 4.02797e+06 791147. 3090.42 5.54 0.817314 0.741735 10361 17 3092 6301 2032575 522031 22.4336 22.4336 -2084.86 -22.4336 0 0 1.01637e+06 3970.19 0.22 0.51 0.129472 0.118414 0.008351 0.3413 0.01562 0.6431
+k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml diffeq2.v common 11.94 0.03 8212 14 0.28 -1 -1 33492 -1 -1 26 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 70804 66 96 719 590 1 523 195 18 18 324 mult_36 auto 0.17 4952 0.39 0.00 15.4468 -901.287 -15.4468 15.4468 0.57 0.00142077 0.00130434 0.201807 0.183856 40 12385 29 1.57076e+07 4.17324e+06 920257. 2840.30 7.05 0.802939 0.739111 9862 18 2918 6227 2632975 646575 17.4678 17.4678 -1071.21 -17.4678 0 0 1.14782e+06 3542.67 0.22 0.42 0.0749303 0.0703724 0.01014 0.2968 0.01841 0.6848
+k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 1456.82 21.05 227540 129 269.36 -1 -1 100704 -1 -1 1709 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 588308 114 102 29578 29304 1 15150 1977 50 50 2500 clb memory auto 426.71 214534 47.40 0.34 69.5472 -54222.9 -69.5472 69.5472 22.53 0.0548195 0.0466533 9.14707 6.76214 102 310190 37 1.47946e+08 1.19388e+08 1.79933e+07 7197.34 543.59 38.97 30.4808 282763 17 51275 209171 45988964 10854403 82.2802 82.2802 -69856.5 -82.2802 -19.7249 -0.293253 2.24258e+07 8970.33 6.67 15.12 3.79236 3.24959 0.1094 0.3732 0.009515 0.6173
+k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml LU32PEEng.v common 13890.94 169.03 770540 128 1482.85 -1 -1 298584 -1 -1 5942 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2067080 114 102 102506 101104 1 53104 6357 92 92 8464 memory auto 1732.87 1030806 400.75 2.62 69.5251 -342884 -69.5251 69.5251 95.56 0.268769 0.221231 41.68 31.2182 140 1339077 49 5.19428e+08 4.24395e+08 8.19698e+07 9684.52 9495.99 152.825 119.823 1248229 17 175068 753095 293161610 78548536 80.5242 80.5242 -473216 -80.5242 -35.5756 -0.295467 1.03833e+08 12267.5 30.39 94.02 13.1515 11.1355 0.4432 0.4346 0.008517 0.5568
+k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml mcml.v common 12001.33 70.85 954104 75 8743.41 -1 -1 447852 -1 -1 6888 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2046924 36 33 134466 132924 1 42613 7143 98 98 9604 clb auto 262.15 558997 247.54 1.57 57.5864 -288902 -57.5864 57.5864 96.23 0.191254 0.160491 31.3341 24.1142 104 710539 24 5.9175e+08 4.6901e+08 7.21685e+07 7514.42 1988.43 123.793 99.2081 695645 17 130256 418425 76172290 17402266 65.0286 65.0286 -384952 -65.0286 0 0 9.11143e+07 9487.12 28.72 27.25 10.5472 9.09967 0.3492 0.3769 0.01335 0.6098
+k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml mkDelayWorker32B.v common 100.40 1.20 78716 5 11.02 -1 -1 52356 -1 -1 453 506 47 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 383244 506 553 3285 3838 1 2969 1559 50 50 2500 memory auto 3.63 15435 6.59 0.04 6.15487 -1682.67 -6.15487 6.15487 23.64 0.0119541 0.0108697 3.58873 3.18811 36 23106 18 1.47946e+08 5.01706e+07 7.25136e+06 2900.55 30.34 7.99202 7.27661 22451 13 3884 4948 3447340 826262 6.78003 6.78003 -2151.51 -6.78003 -0.939054 -0.0653942 8.87017e+06 3548.07 2.87 2.03 1.08724 1.00385 0.192 0.1303 0.0425 0.8272
+k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml mkPktMerge.v common 27.70 0.14 16912 2 0.13 -1 -1 33756 -1 -1 24 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 91556 311 156 972 1128 1 953 506 28 28 784 memory auto 0.50 8158 1.50 0.02 3.82423 -4254.6 -3.82423 3.82423 3.41 0.00502107 0.00439227 0.753842 0.646074 38 14896 34 4.25198e+07 9.51346e+06 2.24090e+06 2858.29 13.86 1.99616 1.74762 13538 13 2732 3125 3254489 944594 4.43964 4.43964 -5136.37 -4.43964 -12.9866 -0.360359 2.82381e+06 3601.80 1.39 1.11 0.195216 0.17803 0.0882 0.1524 0.01696 0.8306
+k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml mkSMAdapter4B.v common 24.18 0.33 31932 7 3.97 -1 -1 37876 -1 -1 156 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 85124 193 205 2232 2437 1 1243 559 20 20 400 memory auto 1.58 9537 1.63 0.01 4.56825 -2601.54 -4.56825 4.56825 0.83 0.0028944 0.00249352 0.588495 0.478181 50 18333 40 2.07112e+07 1.11475e+07 1.38231e+06 3455.79 7.99 1.65041 1.40031 15522 14 4432 10612 1008415 233527 5.29869 5.29869 -3120.68 -5.29869 -6.43661 -0.298787 1.77961e+06 4449.01 0.51 0.60 0.344451 0.312509 0.03174 0.2068 0.02371 0.7695
+k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml or1200.v common 77.35 0.51 40848 27 7.49 -1 -1 43708 -1 -1 209 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 127092 385 394 3979 4310 1 2330 991 27 27 729 io auto 2.57 30758 6.91 0.03 12.3755 -11194 -12.3755 12.3755 1.96 0.0074734 0.00661595 2.8324 2.30696 78 50490 36 3.93038e+07 1.27558e+07 3.98278e+06 5463.35 41.78 7.47577 6.44068 43725 15 9855 35781 3643250 707078 13.6718 13.6718 -12972.3 -13.6718 0 0 5.01260e+06 6876.00 1.38 1.09 0.431159 0.394222 0.0267 0.4123 0.02433 0.5633
+k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml raygentop.v common 57.57 0.42 32880 8 1.75 -1 -1 40456 -1 -1 112 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 86932 214 305 2625 2741 1 1485 640 22 22 484 mult_36 auto 28.15 12607 1.40 0.01 4.38156 -2389.17 -4.38156 4.38156 1.05 0.00340723 0.00300348 0.481601 0.41579 52 28247 39 2.50602e+07 9.60013e+06 1.76726e+06 3651.36 15.99 1.87395 1.65308 23681 20 7557 16828 4845448 1094820 5.20615 5.20615 -3113.35 -5.20615 0 0 2.32807e+06 4810.05 0.50 0.93 0.211194 0.193053 0.02559 0.4317 0.03811 0.5302
+k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml sha.v common 688.14 1.15 38008 20 648.54 -1 -1 95300 -1 -1 209 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 96044 38 36 3404 3440 1 1377 283 19 19 361 clb auto 4.06 13821 2.84 0.02 11.141 -4150.58 -11.141 11.141 1.08 0.0109042 0.00963518 1.49536 1.17743 60 22231 41 1.72706e+07 1.12638e+07 1.50139e+06 4158.98 14.99 5.32786 4.47047 19224 14 4632 17720 567080 100042 13.7758 13.7758 -4902.85 -13.7758 0 0 1.87869e+06 5204.13 0.54 0.65 0.501081 0.452277 0.01202 0.3241 0.02466 0.6513
+k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml bgm.v common 1119.51 23.74 392512 22 486.61 -1 -1 152564 -1 -1 2563 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 695964 257 32 32168 31683 1 18940 2863 61 61 3721 clb auto 141.87 241310 75.48 0.49 15.3375 -22035.6 -15.3375 15.3375 31.97 0.0770189 0.0568176 10.2364 7.5451 76 388849 36 2.18169e+08 1.42489e+08 1.91818e+07 5155.01 221.28 47.2343 36.7835 367854 22 105973 467071 27313129 4461866 17.5077 17.5077 -24992 -17.5077 0 0 2.39883e+07 6446.75 6.60 11.16 4.88875 4.11955 0.1712 0.444 0.02719 0.5288
+k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml blob_merge.v common 155.84 0.57 59364 18 83.99 -1 -1 67668 -1 -1 517 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 148676 36 100 6600 6700 1 2913 653 29 29 841 clb auto 4.52 44610 5.12 0.03 8.38474 -2593.6 -8.38474 8.38474 1.93 0.0117519 0.00996659 1.82641 1.37655 72 71397 39 4.4999e+07 2.78632e+07 3.97065e+06 4721.35 38.76 7.96347 6.44035 63827 15 12869 60023 2770641 369578 9.7242 9.7242 -2900.26 -9.7242 0 0 4.97593e+06 5916.68 1.18 1.28 0.734895 0.634818 0.0241 0.3931 0.04056 0.5664
+k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml boundtop.v common 6.07 0.75 46924 2 0.35 -1 -1 37020 -1 -1 84 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 66096 114 192 455 647 1 310 390 13 13 169 clb auto 0.16 802 0.57 0.00 1.79397 -217.148 -1.79397 1.79397 0.35 0.00110395 0.000953107 0.168297 0.145019 36 2251 33 6.63067e+06 4.5271e+06 367804. 2176.36 1.22 0.379578 0.336386 1940 21 727 939 69431 19570 2.28146 2.28146 -270.862 -2.28146 0 0 456028. 2698.39 0.10 0.06 0.0387518 0.0355014 0.006145 0.4489 0.1102 0.4409
+k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.21 0.05 9236 3 0.18 -1 -1 36080 -1 -1 67 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 64936 99 130 363 493 1 260 297 12 12 144 clb auto 0.06 657 0.27 0.00 2.08915 -200.289 -2.08915 2.08915 0.18 0.000576256 0.000493944 0.073449 0.063544 46 1472 9 5.66058e+06 4.1589e+06 378970. 2631.74 0.91 0.229901 0.203657 1389 8 536 729 66079 22075 2.65239 2.65239 -230.864 -2.65239 0 0 486261. 3376.82 0.11 0.04 0.0204429 0.0185455 0.007639 0.2313 0.08022 0.6885
+k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 10.84 0.04 9132 15 0.30 -1 -1 34572 -1 -1 39 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 75620 162 96 999 932 1 691 302 16 16 256 mult_36 auto 0.32 5251 0.55 0.01 19.8123 -1650.45 -19.8123 19.8123 0.40 0.00165775 0.0015123 0.237304 0.211817 50 12536 46 1.21132e+07 4.08187e+06 780512. 3048.87 5.79 0.869132 0.788979 10014 18 3264 6632 2267312 568535 22.6426 22.6426 -1922.44 -22.6426 0 0 1.00276e+06 3917.05 0.17 0.41 0.0868927 0.0810325 0.007783 0.3587 0.01639 0.6249
+k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml diffeq2.v common 11.60 0.03 8252 14 0.33 -1 -1 33504 -1 -1 26 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 69600 66 96 719 590 1 521 195 18 18 324 mult_36 auto 0.35 4901 0.41 0.00 15.6698 -899.374 -15.6698 15.6698 0.55 0.00143861 0.0013282 0.210694 0.19142 50 10150 26 1.57076e+07 4.17324e+06 1.01953e+06 3146.70 6.13 0.70511 0.648435 9228 18 2733 6167 3098697 743539 17.5922 17.5922 -1038.74 -17.5922 0 0 1.31112e+06 4046.65 0.35 0.59 0.0888488 0.0835127 0.009716 0.3359 0.02029 0.6438
+k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1243.21 20.80 227520 129 274.58 -1 -1 100952 -1 -1 1961 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 584976 114 102 29578 29304 1 16270 2229 54 54 2916 clb auto 158.02 232335 50.61 0.50 70.4195 -57155 -70.4195 70.4195 22.48 0.0874793 0.0746991 9.41277 6.87315 106 346247 49 1.70873e+08 1.3297e+08 2.00350e+07 6870.71 577.63 42.0111 32.8666 312179 20 61991 239955 44391205 9287149 80.6584 80.6584 -71222.5 -80.6584 -27.6087 -0.29436 2.53677e+07 8699.49 8.10 14.74 4.32392 3.67043 0.1084 0.4304 0.01069 0.5589
+k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml LU32PEEng.v common 10175.97 167.51 770500 128 1425.95 -1 -1 298608 -1 -1 6785 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2128260 114 102 102506 101104 1 56509 7200 98 98 9604 clb auto 528.73 1097947 457.10 2.55 68.6045 -350944 -68.6045 68.6045 86.42 0.263229 0.22267 43.9824 33.2681 144 1446610 36 5.9175e+08 4.69823e+08 8.92964e+07 9297.83 6915.32 190.275 148.823 1371551 21 207884 864832 382702803 112021507 79.6912 79.6912 -487548 -79.6912 -23.4003 -0.17368 1.13316e+08 11798.9 34.12 154.78 17.7706 14.8481 0.4336 0.485 0.009345 0.5057
+k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml mcml.v common 12829.26 71.36 954088 75 9022.33 -1 -1 447672 -1 -1 7205 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 1911256 36 33 134466 132924 1 42564 7460 101 101 10201 clb auto 176.18 527738 255.71 1.57 58.2188 -287283 -58.2188 58.2188 93.98 0.183193 0.154152 31.8824 24.5498 92 708601 29 6.22828e+08 4.86093e+08 6.34789e+07 6222.81 2643.88 117.832 94.0655 674879 17 158245 480154 73572567 15472800 64.4569 64.4569 -370842 -64.4569 -0.238797 -0.0315101 8.07153e+07 7912.49 28.47 26.14 10.9351 9.38225 0.3129 0.3862 0.0136 0.6002
+k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml mkDelayWorker32B.v common 79.95 0.85 78748 5 7.25 -1 -1 52360 -1 -1 456 506 47 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 317408 506 553 3285 3838 1 3022 1562 50 50 2500 memory auto 3.04 14221 5.16 0.04 6.69468 -1689 -6.69468 6.69468 18.97 0.012082 0.0109788 2.64097 2.37593 38 21616 16 1.47946e+08 5.03323e+07 6.86584e+06 2746.33 25.60 6.70802 6.15628 20994 14 4115 5409 4287888 1109723 7.4052 7.4052 -2170.62 -7.4052 -1.61477 -0.217304 8.69095e+06 3476.38 2.40 1.13 0.483572 0.45532 0.1668 0.1393 0.04037 0.8203
+k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml mkPktMerge.v common 22.07 0.11 16992 2 0.08 -1 -1 33680 -1 -1 26 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 90412 311 156 972 1128 1 953 508 28 28 784 memory auto 0.34 8742 0.88 0.01 4.36288 -4278.69 -4.36288 4.36288 1.69 0.00266275 0.00227537 0.383355 0.31855 40 14898 15 4.25198e+07 9.62124e+06 2.13295e+06 2720.61 12.62 2.12292 1.87888 13879 15 2626 2997 2791240 776167 4.70294 4.70294 -5160.82 -4.70294 -15.5317 -0.321515 2.67004e+06 3405.67 0.94 0.77 0.136143 0.124391 0.07937 0.1598 0.01811 0.8221
+k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml mkSMAdapter4B.v common 21.90 0.34 31964 7 2.92 -1 -1 37868 -1 -1 157 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 93132 193 205 2232 2437 1 1252 560 20 20 400 memory auto 1.27 9196 1.55 0.01 4.55688 -2599.03 -4.55688 4.55688 0.74 0.00289455 0.00245485 0.567823 0.461231 52 17658 48 2.07112e+07 1.12014e+07 1.31074e+06 3276.84 8.92 2.01364 1.71844 15195 15 4412 10602 945329 222643 5.29591 5.29591 -3061.78 -5.29591 -5.08811 -0.29436 1.72518e+06 4312.96 0.40 0.43 0.246486 0.226361 0.02944 0.2163 0.02696 0.7568
+k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml or1200.v common 70.97 0.60 40900 27 5.94 -1 -1 43864 -1 -1 232 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 115488 385 394 3979 4310 1 2374 1014 27 27 729 io auto 2.68 31214 4.91 0.05 12.5499 -11607.8 -12.5499 12.5499 2.22 0.00833898 0.00707937 1.8665 1.51692 88 48293 17 3.93038e+07 1.39954e+07 4.08947e+06 5609.70 39.07 5.29122 4.54594 44191 14 9935 34570 2972148 548732 14.0107 14.0107 -13150.9 -14.0107 0 0 5.12786e+06 7034.10 1.24 0.91 0.389797 0.357505 0.02439 0.4683 0.02857 0.5031
+k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml raygentop.v common 44.47 0.46 32920 8 1.42 -1 -1 40544 -1 -1 134 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 86320 214 305 2625 2741 1 1509 662 22 22 484 mult_36 auto 15.18 12312 2.48 0.03 4.3155 -2359.01 -4.3155 4.3155 1.26 0.01115 0.00983078 1.08328 0.927533 48 28150 38 2.50602e+07 1.07858e+07 1.51918e+06 3138.81 15.55 2.52385 2.20822 21852 16 6208 13249 3655165 823119 5.14527 5.14527 -2989.53 -5.14527 0 0 1.94563e+06 4019.90 0.39 0.72 0.179291 0.165751 0.02162 0.4632 0.04281 0.494
+k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml sha.v common 664.88 0.78 37916 20 638.96 -1 -1 95316 -1 -1 215 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 95788 38 36 3404 3440 1 1369 289 19 19 361 clb auto 1.82 14699 1.40 0.01 11.3746 -3865.69 -11.3746 11.3746 0.62 0.00465021 0.00322121 0.577599 0.419731 62 22930 39 1.72706e+07 1.15872e+07 1.42202e+06 3939.11 9.52 1.86798 1.47993 20785 16 5508 20603 681869 115496 14.1225 14.1225 -4461.62 -14.1225 0 0 1.76637e+06 4892.99 0.32 0.39 0.256467 0.224212 0.01052 0.3781 0.02687 0.595
+k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml bgm.v common 1218.92 23.11 392516 22 499.58 -1 -1 152604 -1 -1 2494 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 651952 257 32 32168 31683 1 18737 2794 60 60 3600 clb auto 186.98 239973 71.98 0.49 14.8971 -21809.6 -14.8971 14.8971 31.10 0.0775549 0.0564622 10.3375 7.62897 76 390974 46 2.12673e+08 1.38771e+08 1.85353e+07 5148.70 272.45 46.6002 36.1897 362650 20 100623 448871 25934985 4089250 17.0567 17.0567 -24755.8 -17.0567 0 0 2.31798e+07 6438.82 6.47 12.29 5.78733 4.99166 0.1761 0.4248 0.02683 0.5483
+k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml blob_merge.v common 158.68 0.65 59416 18 80.29 -1 -1 67720 -1 -1 521 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 149260 36 100 6600 6700 1 2925 657 29 29 841 clb auto 5.15 45986 5.15 0.03 8.38186 -2608.85 -8.38186 8.38186 1.79 0.0113305 0.00956696 1.90123 1.37919 74 70344 28 4.4999e+07 2.80788e+07 4.04182e+06 4805.97 46.34 7.6968 6.15697 66617 13 13360 62127 2976509 392372 9.7015 9.7015 -2901.36 -9.7015 0 0 5.07312e+06 6032.25 1.15 1.26 0.685111 0.596582 0.02671 0.369 0.0369 0.5941
+k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml boundtop.v common 5.11 0.65 47008 2 0.35 -1 -1 37000 -1 -1 84 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 66240 114 192 455 647 1 308 390 13 13 169 clb auto 0.17 702 0.35 0.00 1.76822 -206.093 -1.76822 1.76822 0.22 0.000588808 0.000518271 0.0974337 0.0852378 34 2141 18 6.63067e+06 4.5271e+06 352978. 2088.63 1.01 0.246682 0.220787 1765 11 687 859 58567 17722 2.31528 2.31528 -256.586 -2.31528 0 0 434699. 2572.18 0.08 0.03 0.0190054 0.0176556 0.007067 0.3319 0.09248 0.5756
+k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.18 0.05 9296 3 0.27 -1 -1 36108 -1 -1 67 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 65340 99 130 363 493 1 260 297 12 12 144 clb auto 0.06 657 0.26 0.00 2.08915 -200.289 -2.08915 2.08915 0.18 0.000421487 0.000367925 0.0712697 0.0616528 46 1482 12 5.66058e+06 4.1589e+06 378970. 2631.74 0.90 0.229679 0.203424 1398 10 523 698 65113 21840 2.65239 2.65239 -232.095 -2.65239 0 0 486261. 3376.82 0.08 0.03 0.0137781 0.012654 0.008628 0.2081 0.07103 0.7208
+k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 13.85 0.04 9068 15 0.44 -1 -1 34576 -1 -1 39 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 69640 162 96 999 932 1 691 302 16 16 256 mult_36 auto 0.33 5251 1.05 0.01 19.8123 -1650.45 -19.8123 19.8123 0.61 0.00389545 0.0035555 0.532165 0.476691 50 12858 46 1.21132e+07 4.08187e+06 780512. 3048.87 7.42 1.33233 1.20882 10140 17 3290 6677 2292108 576545 22.6424 22.6424 -1935.34 -22.6424 0 0 1.00276e+06 3917.05 0.17 0.40 0.0823789 0.0769017 0.008079 0.347 0.01579 0.6372
+k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml diffeq2.v common 14.97 0.03 8168 14 0.29 -1 -1 33452 -1 -1 25 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 69832 66 96 719 590 1 525 194 18 18 324 mult_36 auto 0.24 4877 0.58 0.01 15.4909 -892.961 -15.4909 15.4909 0.69 0.00228364 0.00213745 0.312634 0.284374 48 11146 26 1.57076e+07 4.11935e+06 988393. 3050.59 9.69 1.03603 0.95088 9623 19 2719 6183 2873335 687438 17.5778 17.5778 -1052.1 -17.5778 0 0 1.26510e+06 3904.63 0.27 0.47 0.0794167 0.0746446 0.01014 0.3153 0.0198 0.6649
+k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 961.20 19.53 227596 129 269.13 -1 -1 100848 -1 -1 1877 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 578680 114 102 29578 29304 1 15659 2145 53 53 2809 clb auto 170.54 221743 54.74 0.28 71.3576 -57618.6 -71.3576 71.3576 23.26 0.0542171 0.0459872 11.2078 8.33996 102 325437 31 1.63647e+08 1.28443e+08 1.86097e+07 6625.03 305.77 41.4258 32.2042 300817 19 61105 238533 36092549 7289219 81.9871 81.9871 -70436.7 -81.9871 -17.3169 -0.29436 2.33362e+07 8307.64 7.22 13.51 3.84443 3.20501 0.1052 0.4073 0.01001 0.5827
+k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml LU32PEEng.v common 7174.17 171.65 770428 128 1419.04 -1 -1 298556 -1 -1 6625 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2071756 114 102 102506 101104 1 54939 7040 97 97 9409 clb auto 796.61 1044190 424.40 2.61 69.9155 -339019 -69.9155 69.9155 84.89 0.25402 0.211453 40.637 30.2397 136 1388717 31 5.71422e+08 4.612e+08 8.25222e+07 8770.56 3765.80 187.001 146.126 1316278 18 205611 860548 243307856 57840943 79.7624 79.7624 -475239 -79.7624 -20.7016 -0.180322 1.04911e+08 11150.1 34.97 86.87 15.506 12.9038 0.4229 0.4629 0.0091 0.528
+k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml mcml.v common 12565.26 72.48 954152 75 8994.86 -1 -1 447728 -1 -1 7114 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 1939488 36 33 134466 132924 1 42490 7369 100 100 10000 clb auto 174.93 535639 281.01 1.61 57.0422 -295777 -57.0422 57.0422 91.84 0.204509 0.152534 35.5107 26.8182 94 726218 33 6.13558e+08 4.81189e+08 6.34701e+07 6347.01 2370.63 137.216 109.242 684382 19 155374 485508 84797438 19636652 64.1216 64.1216 -418878 -64.1216 0 0 7.99743e+07 7997.43 24.53 31.94 11.9985 10.2795 0.3193 0.3778 0.01352 0.6087
+k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml mkDelayWorker32B.v common 84.38 1.17 78756 5 9.32 -1 -1 52480 -1 -1 456 506 47 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 319384 506 553 3285 3838 1 3022 1562 50 50 2500 memory auto 2.93 13687 5.14 0.04 6.25472 -1714.81 -6.25472 6.25472 20.24 0.0121933 0.0110684 2.59235 2.3192 38 21549 16 1.47946e+08 5.03323e+07 6.86584e+06 2746.33 25.85 6.68803 6.11592 20603 15 4201 5311 3197350 822215 6.72359 6.72359 -2207.38 -6.72359 -6.4012 -0.220402 8.69095e+06 3476.38 2.76 0.98 0.514634 0.484846 0.1903 0.1255 0.03917 0.8353
+k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml mkPktMerge.v common 20.77 0.10 17036 2 0.06 -1 -1 33692 -1 -1 26 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 90668 311 156 972 1128 1 953 508 28 28 784 memory auto 0.35 8742 0.84 0.01 4.36288 -4278.69 -4.36288 4.36288 1.66 0.00246485 0.00209931 0.366551 0.304434 40 14840 24 4.25198e+07 9.62124e+06 2.13295e+06 2720.61 12.27 2.13042 1.88967 13900 12 2628 3005 2799592 777848 4.70294 4.70294 -5174.08 -4.70294 -14.6639 -0.321515 2.67004e+06 3405.67 0.62 0.55 0.0971198 0.0887319 0.0833 0.1531 0.01725 0.8297
+k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml mkSMAdapter4B.v common 19.43 0.31 31900 7 2.54 -1 -1 37892 -1 -1 161 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 84804 193 205 2232 2437 1 1256 564 20 20 400 memory auto 1.45 9111 1.58 0.01 4.44378 -2569.49 -4.44378 4.44378 0.71 0.00306898 0.00244302 0.565259 0.454636 50 18161 40 2.07112e+07 1.14169e+07 1.26944e+06 3173.59 7.31 1.73551 1.46592 15309 17 4930 11877 1016034 228075 5.11778 5.11778 -3090.88 -5.11778 -10.7088 -0.342703 1.63222e+06 4080.54 0.30 0.34 0.170573 0.154272 0.0317 0.1953 0.02434 0.7804
+k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml or1200.v common 61.28 0.51 40848 27 5.17 -1 -1 43632 -1 -1 232 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 119436 385 394 3979 4310 1 2374 1014 27 27 729 io auto 2.05 31214 3.53 0.03 12.5499 -11608.1 -12.5499 12.5499 1.63 0.00738857 0.00659447 1.15497 0.96 82 50605 21 3.93038e+07 1.39954e+07 3.81403e+06 5231.86 36.00 4.5721 3.96478 45133 14 10633 37048 3149595 583008 14.1529 14.1529 -13308.3 -14.1529 0 0 4.78922e+06 6569.57 1.08 0.94 0.38905 0.353882 0.02514 0.4327 0.02517 0.5421
+k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml raygentop.v common 45.37 0.33 32912 8 1.43 -1 -1 40500 -1 -1 113 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 86420 214 305 2625 2741 1 1475 641 22 22 484 mult_36 auto 20.70 12281 1.40 0.01 4.44992 -2388.68 -4.44992 4.44992 0.92 0.00333586 0.00293397 0.488108 0.420485 50 27446 40 2.50602e+07 9.65402e+06 1.56759e+06 3238.82 13.13 1.76708 1.55568 21890 16 6473 14452 3677266 803154 5.09169 5.09169 -2991.99 -5.09169 0 0 2.01671e+06 4166.75 0.39 0.70 0.174671 0.161504 0.02414 0.4124 0.03807 0.5495
+k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml sha.v common 700.48 1.13 38164 20 670.71 -1 -1 95316 -1 -1 215 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 95704 38 36 3404 3440 1 1367 289 19 19 361 clb auto 1.71 14706 1.44 0.01 11.3115 -3880.48 -11.3115 11.3115 0.62 0.00388691 0.00326863 0.592537 0.435241 62 23327 47 1.72706e+07 1.15872e+07 1.42202e+06 3939.11 12.62 2.15696 1.72009 21124 17 5895 21030 704012 119824 13.199 13.199 -4383.99 -13.199 0 0 1.76637e+06 4892.99 0.34 0.41 0.269594 0.237242 0.01156 0.3575 0.02605 0.6164
+k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml bgm.v common 1081.24 22.47 392632 22 486.87 -1 -1 152548 -1 -1 2513 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 656984 257 32 32168 31683 1 18954 2813 61 61 3721 clb auto 158.44 245971 60.40 0.63 16.0987 -22526.5 -16.0987 16.0987 28.02 0.0774811 0.0558977 9.53939 6.95126 80 382290 27 2.18169e+08 1.39795e+08 2.00267e+07 5382.08 198.60 40.3949 31.7252 358792 20 95021 411987 22844630 3690613 17.8158 17.8158 -25328.2 -17.8158 0 0 2.52656e+07 6790.00 7.71 10.46 4.87559 4.21527 0.1734 0.4418 0.02728 0.5309
+k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml blob_merge.v common 157.83 0.45 59328 18 82.31 -1 -1 67796 -1 -1 501 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 154532 36 100 6600 6700 1 2819 637 29 29 841 clb auto 3.42 42817 5.37 0.03 8.11675 -2449.13 -8.11675 8.11675 1.98 0.01177 0.0100706 2.04108 1.48634 72 70230 45 4.4999e+07 2.70009e+07 3.97065e+06 4721.35 41.52 8.47202 6.7115 62202 14 12703 60698 2853168 379810 9.19289 9.19289 -2765.04 -9.19289 0 0 4.97593e+06 5916.68 1.26 1.27 0.721002 0.626312 0.02482 0.3849 0.04157 0.5735
+k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml boundtop.v common 5.13 0.72 47012 2 0.36 -1 -1 37024 -1 -1 84 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 66220 114 192 455 647 1 311 390 13 13 169 clb auto 0.13 734 0.36 0.00 1.90597 -213.13 -1.90597 1.90597 0.22 0.000592172 0.00051778 0.0995524 0.0868956 40 1836 12 6.63067e+06 4.5271e+06 401688. 2376.85 1.09 0.309525 0.277905 1608 10 610 775 47635 14751 2.41577 2.41577 -260.386 -2.41577 0 0 505045. 2988.43 0.09 0.03 0.018006 0.0166753 0.005742 0.4126 0.1175 0.4699
+k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 4.31 0.04 9376 3 0.30 -1 -1 36088 -1 -1 67 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 65236 99 130 363 493 1 270 297 12 12 144 clb auto 0.10 718 0.44 0.00 2.05624 -200.755 -2.05624 2.05624 0.30 0.00076626 0.000645305 0.127748 0.107859 48 1561 9 5.66058e+06 4.1589e+06 394078. 2736.65 1.46 0.40593 0.355818 1438 11 543 707 50455 15973 2.664 2.664 -236.599 -2.664 0 0 503207. 3494.49 0.10 0.04 0.0196863 0.0180637 0.007874 0.2493 0.0787 0.672
+k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 14.53 0.04 9140 15 0.34 -1 -1 34528 -1 -1 38 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 75936 162 96 999 932 1 689 301 16 16 256 mult_36 auto 0.31 5405 0.52 0.01 19.7682 -1693.3 -19.7682 19.7682 0.39 0.00165792 0.00151042 0.221708 0.198817 48 12726 37 1.21132e+07 4.02797e+06 756778. 2956.16 9.80 1.02782 0.933545 10220 19 3442 6774 2124797 514940 22.553 22.553 -2007.56 -22.553 0 0 968034. 3781.38 0.17 0.38 0.0895859 0.0835849 0.007899 0.3544 0.01649 0.6291
+k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml diffeq2.v common 14.81 0.05 8292 14 0.27 -1 -1 33500 -1 -1 26 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 70360 66 96 719 590 1 524 195 18 18 324 mult_36 auto 0.24 4804 0.87 0.01 15.489 -907.596 -15.489 15.489 0.72 0.00323184 0.00297925 0.516491 0.46803 46 10752 33 1.57076e+07 4.17324e+06 949534. 2930.66 9.16 1.31575 1.20665 9612 17 2618 6125 2919645 706188 17.5995 17.5995 -1074.32 -17.5995 0 0 1.22123e+06 3769.23 0.31 0.62 0.0988665 0.0933296 0.009744 0.3237 0.02027 0.656
+k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 863.77 22.53 227552 129 266.03 -1 -1 100692 -1 -1 1924 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 582172 114 102 29578 29304 1 16180 2192 53 53 2809 clb auto 155.44 224489 41.24 0.26 71.2744 -56000.3 -71.2744 71.2744 23.02 0.0541241 0.0461236 8.81824 6.38927 100 332884 44 1.63647e+08 1.30976e+08 1.82848e+07 6509.36 238.31 34.1098 26.2833 304020 19 62324 243877 41459064 9020565 81.2603 81.2603 -70341.9 -81.2603 -14.1037 -0.292146 2.30694e+07 8212.69 6.90 17.59 4.96199 4.18844 0.105 0.4083 0.01022 0.5815
+k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml LU32PEEng.v common 7684.05 173.82 770440 128 1489.87 -1 -1 298640 -1 -1 6683 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2062964 114 102 102506 101104 1 56326 7098 97 97 9409 clb auto 632.13 1085869 415.91 2.36 69.5894 -357932 -69.5894 69.5894 88.97 0.256472 0.216492 40.0667 30.6347 142 1420425 31 5.71422e+08 4.64326e+08 8.58783e+07 9127.25 4371.06 167.251 131.494 1350011 17 211215 876286 238269865 58657353 80.7963 80.7963 -510037 -80.7963 -34.0106 -0.17368 1.08861e+08 11569.9 42.13 87.18 14.6884 12.2957 0.4296 0.4762 0.009066 0.5147
+k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml mcml.v common 12319.05 70.78 954196 75 9012.59 -1 -1 447864 -1 -1 7109 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 1892576 36 33 134466 132924 1 42618 7364 100 100 10000 clb auto 215.24 513860 271.80 1.73 57.6524 -293379 -57.6524 57.6524 97.56 0.271559 0.23958 34.544 26.375 88 709938 41 6.13558e+08 4.80919e+08 5.99267e+07 5992.67 2069.46 142.638 113.925 666271 20 162201 495055 80125632 17134228 64.5215 64.5215 -419758 -64.5215 0 0 7.51462e+07 7514.62 29.81 31.40 12.9699 11.1412 0.3085 0.3683 0.01388 0.6179
+k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml mkDelayWorker32B.v common 88.18 0.87 78788 5 8.04 -1 -1 52556 -1 -1 456 506 47 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 319468 506 553 3285 3838 1 3022 1562 50 50 2500 memory auto 3.06 15009 5.17 0.04 6.50707 -1822.42 -6.50707 6.50707 19.78 0.0115826 0.010519 2.59129 2.32166 38 22593 14 1.47946e+08 5.03323e+07 6.86584e+06 2746.33 31.51 7.43783 6.79789 21653 14 3938 4945 3864768 962788 7.30789 7.30789 -2322.59 -7.30789 -3.33065 -0.293253 8.69095e+06 3476.38 2.38 1.59 0.73831 0.689927 0.1701 0.1386 0.04127 0.8201
+k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml mkPktMerge.v common 19.53 0.15 17012 2 0.10 -1 -1 33692 -1 -1 26 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 90712 311 156 972 1128 1 953 508 28 28 784 memory auto 0.53 8291 0.86 0.01 4.09443 -4075.92 -4.09443 4.09443 2.51 0.00252128 0.0021426 0.373974 0.312511 36 14957 28 4.25198e+07 9.62124e+06 1.94918e+06 2486.20 9.05 1.28917 1.1233 13865 15 2982 3489 2814451 814476 4.54352 4.54352 -4962.37 -4.54352 -15.4687 -0.339827 2.40571e+06 3068.51 0.54 0.56 0.110802 0.100532 0.08151 0.1524 0.01729 0.8303
+k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml mkSMAdapter4B.v common 29.84 0.34 31992 7 3.19 -1 -1 37852 -1 -1 157 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 84880 193 205 2232 2437 1 1245 560 20 20 400 memory auto 2.91 9409 2.81 0.01 4.51843 -2563.66 -4.51843 4.51843 1.13 0.00308431 0.00260283 1.24575 1.02119 58 16810 27 2.07112e+07 1.12014e+07 1.47096e+06 3677.41 11.41 3.07986 2.63519 14781 15 4544 11156 910084 208759 5.21689 5.21689 -3041.22 -5.21689 -7.97206 -0.342703 1.87544e+06 4688.60 0.54 0.60 0.364422 0.330135 0.03036 0.2234 0.02796 0.7486
+k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml or1200.v common 68.62 0.62 40800 27 7.68 -1 -1 43856 -1 -1 224 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 125172 385 394 3979 4310 1 2344 1006 27 27 729 io auto 1.87 31017 3.71 0.03 12.7758 -11318.1 -12.7758 12.7758 2.65 0.00751072 0.00667678 1.27483 1.04848 84 52290 47 3.93038e+07 1.35643e+07 3.89873e+06 5348.05 37.01 5.32414 4.65596 45106 15 10108 35466 2903129 530987 14.3286 14.3286 -12817.1 -14.3286 0 0 4.96011e+06 6803.99 1.19 0.89 0.403332 0.370488 0.0243 0.4595 0.02749 0.513
+k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml raygentop.v common 43.52 0.42 32976 8 2.27 -1 -1 40492 -1 -1 132 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 86932 214 305 2625 2741 1 1511 660 22 22 484 mult_36 auto 14.78 12482 1.36 0.01 4.31328 -2379.32 -4.31328 4.31328 1.11 0.00331644 0.0029178 0.462214 0.396378 56 24840 33 2.50602e+07 1.0678e+07 1.74986e+06 3615.40 13.63 1.96081 1.73309 22290 18 5969 13077 3442548 781569 5.27422 5.27422 -2956.96 -5.27422 0 0 2.23304e+06 4613.71 0.67 1.21 0.413857 0.378489 0.02207 0.47 0.04255 0.4874
+k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml sha.v common 702.59 1.12 38104 20 672.97 -1 -1 95512 -1 -1 209 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 96152 38 36 3404 3440 1 1353 283 19 19 361 clb auto 2.31 13585 1.69 0.01 11.3536 -4012.03 -11.3536 11.3536 0.98 0.00373774 0.00314843 0.748625 0.564202 62 21104 18 1.72706e+07 1.12638e+07 1.42202e+06 3939.11 9.65 2.05676 1.65636 19366 16 5216 19604 638674 108002 13.8896 13.8896 -4503.3 -13.8896 0 0 1.76637e+06 4892.99 0.32 0.38 0.253914 0.224973 0.01055 0.368 0.0272 0.6048
+k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml bgm.v common 1207.73 22.88 392688 22 467.66 -1 -1 152696 -1 -1 2482 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 653024 257 32 32168 31683 1 18642 2782 60 60 3600 clb auto 199.91 246916 77.04 0.41 16.0631 -22271.7 -16.0631 16.0631 30.47 0.0757062 0.0548973 11.321 8.33061 82 388244 38 2.12673e+08 1.38124e+08 1.97362e+07 5482.28 279.95 52.6554 41.351 363870 21 101815 455369 27332598 4473707 18.4191 18.4191 -25029.7 -18.4191 0 0 2.47708e+07 6880.78 7.66 11.04 4.68665 3.96874 0.1763 0.4309 0.02583 0.5433
+k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml blob_merge.v common 173.84 0.47 59300 18 89.39 -1 -1 67748 -1 -1 501 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 149940 36 100 6600 6700 1 2819 637 29 29 841 clb auto 3.53 42769 7.29 0.05 8.11675 -2447.36 -8.11675 8.11675 2.23 0.0209018 0.0178045 2.92724 2.16021 72 69155 46 4.4999e+07 2.70009e+07 3.97065e+06 4721.35 48.75 10.1618 8.06213 62173 15 12561 60390 2797907 371309 9.19178 9.19178 -2770.4 -9.19178 0 0 4.97593e+06 5916.68 1.22 1.28 0.739242 0.640724 0.02717 0.3518 0.03798 0.6103
+k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml boundtop.v common 5.47 0.65 46956 2 0.56 -1 -1 37020 -1 -1 84 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 65988 114 192 455 647 1 309 390 13 13 169 clb auto 0.19 796 0.36 0.00 1.75153 -208.537 -1.75153 1.75153 0.22 0.000589254 0.000519395 0.0988547 0.0863354 38 2101 13 6.63067e+06 4.5271e+06 384612. 2275.81 1.16 0.279155 0.24964 1765 9 619 733 53052 15274 2.37006 2.37006 -254.402 -2.37006 0 0 489150. 2894.38 0.08 0.03 0.017326 0.0160866 0.007244 0.3456 0.09185 0.5625
+k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.41 0.05 9292 3 0.25 -1 -1 36136 -1 -1 67 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 70792 99 130 363 493 1 270 297 12 12 144 clb auto 0.08 718 0.36 0.00 2.05624 -200.755 -2.05624 2.05624 0.24 0.000583806 0.000502786 0.0942672 0.0803616 48 1574 8 5.66058e+06 4.1589e+06 394078. 2736.65 1.00 0.279431 0.246336 1431 8 538 704 49349 15661 2.664 2.664 -232.19 -2.664 0 0 503207. 3494.49 0.08 0.02 0.0121235 0.0112043 0.008829 0.222 0.07019 0.7078
+k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 12.19 0.04 9116 15 0.37 -1 -1 34540 -1 -1 38 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 69524 162 96 999 932 1 689 301 16 16 256 mult_36 auto 0.26 5405 0.58 0.01 19.7682 -1693.3 -19.7682 19.7682 0.40 0.00218439 0.00192907 0.248627 0.222463 46 14514 50 1.21132e+07 4.02797e+06 727248. 2840.81 7.38 0.813847 0.738202 10716 20 3769 7590 2200078 535329 22.5606 22.5606 -1929.83 -22.5606 0 0 934704. 3651.19 0.16 0.39 0.0920628 0.0855782 0.00818 0.3412 0.01568 0.6432
+k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml diffeq2.v common 12.85 0.05 8352 14 0.28 -1 -1 33504 -1 -1 26 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 69816 66 96 719 590 1 522 195 18 18 324 mult_36 auto 0.24 4698 0.57 0.00 15.3166 -899.181 -15.3166 15.3166 0.72 0.00146677 0.00135197 0.310634 0.282634 50 11023 27 1.57076e+07 4.17324e+06 1.01953e+06 3146.70 7.66 0.941489 0.865458 9164 17 2835 6624 2911113 732283 17.4293 17.4293 -1057.83 -17.4293 0 0 1.31112e+06 4046.65 0.24 0.52 0.0814129 0.0766058 0.01032 0.3102 0.01927 0.6706
+k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 991.70 20.82 227552 129 272.40 -1 -1 100728 -1 -1 1844 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 575992 114 102 29578 29304 1 15488 2112 52 52 2704 clb auto 204.12 218897 46.23 0.26 70.1192 -51431.5 -70.1192 70.1192 25.82 0.0557967 0.0471795 9.9385 7.31465 102 319152 33 1.58905e+08 1.26664e+08 1.78867e+07 6614.90 285.48 38.0077 29.3571 293704 19 59621 235362 44721484 9984605 79.8495 79.8495 -65611.6 -79.8495 -12.7907 -0.295467 2.24325e+07 8296.04 6.78 14.66 4.19921 3.52002 0.1049 0.3984 0.01026 0.5913
+k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml LU32PEEng.v common 8335.23 170.81 770436 128 1442.63 -1 -1 298516 -1 -1 6516 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2051868 114 102 102506 101104 1 54494 6931 96 96 9216 clb auto 808.62 1044778 450.89 2.20 68.8178 -305537 -68.8178 68.8178 90.43 0.246295 0.207807 45.7569 34.6771 134 1416605 43 5.62531e+08 4.55327e+08 7.95217e+07 8628.65 4820.23 191.196 149.235 1320145 19 205747 867559 280552175 73459018 79.4826 79.4826 -431452 -79.4826 -18.9655 -0.29436 1.01618e+08 11026.2 33.54 118.98 18.3662 15.5502 0.4221 0.456 0.009206 0.5348
+k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml mcml.v common 12058.87 65.57 954184 75 9100.81 -1 -1 447760 -1 -1 6994 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 1892932 36 33 134466 132924 1 42567 7249 99 99 9801 clb auto 231.53 503257 276.18 1.59 58 -286364 -58 58 92.88 0.183093 0.154545 36.0139 27.4517 84 720728 49 6.00857e+08 4.74722e+08 5.61951e+07 5733.61 1714.33 145.148 116.225 661785 19 160918 494750 89979470 20715328 63.9293 63.9293 -350198 -63.9293 0 0 7.13851e+07 7283.45 25.25 34.77 12.471 10.6618 0.311 0.3482 0.01347 0.6383
+k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml mkDelayWorker32B.v common 83.49 1.09 78788 5 9.84 -1 -1 52504 -1 -1 456 506 47 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 319444 506 553 3285 3838 1 3022 1562 50 50 2500 memory auto 3.54 14298 5.13 0.03 6.71903 -1709.56 -6.71903 6.71903 18.85 0.0116391 0.0105543 2.60085 2.328 38 21968 15 1.47946e+08 5.03323e+07 6.86584e+06 2746.33 25.57 6.56725 6.00387 21087 16 4239 5383 4422419 1140648 7.15342 7.15342 -2239.08 -7.15342 -1.97725 -0.217081 8.69095e+06 3476.38 2.44 1.18 0.529048 0.497642 0.1823 0.1299 0.03963 0.8305
+k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml mkPktMerge.v common 23.40 0.10 16980 2 0.11 -1 -1 33700 -1 -1 26 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 90800 311 156 972 1128 1 953 508 28 28 784 memory auto 0.54 8291 1.40 0.01 4.09443 -4075.92 -4.09443 4.09443 2.57 0.00251173 0.00214987 0.698141 0.592902 36 14945 22 4.25198e+07 9.62124e+06 1.94918e+06 2486.20 12.22 2.02292 1.77741 13861 16 2949 3439 2774694 801507 4.54352 4.54352 -4989.89 -4.54352 -15.4115 -0.339827 2.40571e+06 3068.51 0.56 0.58 0.118153 0.107078 0.08554 0.1456 0.01648 0.8379
+k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml mkSMAdapter4B.v common 22.23 0.32 32020 7 2.63 -1 -1 37908 -1 -1 162 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 85048 193 205 2232 2437 1 1246 565 20 20 400 memory auto 2.17 9201 1.64 0.01 4.61852 -2566.21 -4.61852 4.61852 0.73 0.00312794 0.00247119 0.593516 0.479019 52 17036 22 2.07112e+07 1.14708e+07 1.31074e+06 3276.84 8.73 1.75981 1.48859 15454 16 4604 11241 1090818 249095 5.90007 5.90007 -3053.05 -5.90007 -10.2359 -0.339827 1.72518e+06 4312.96 0.41 0.46 0.2407 0.217865 0.02878 0.2101 0.02483 0.765
+k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml or1200.v common 94.07 0.53 40836 27 6.16 -1 -1 43596 -1 -1 225 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 117008 385 394 3979 4310 1 2344 1007 27 27 729 io auto 2.33 30480 3.65 0.03 12.8271 -11470.3 -12.8271 12.8271 1.64 0.00731674 0.00651191 1.20104 0.993064 78 52764 50 3.93038e+07 1.36182e+07 3.65949e+06 5019.88 66.55 5.62229 4.89842 44918 15 10820 38559 2823326 504017 14.8802 14.8802 -12878.2 -14.8802 0 0 4.63207e+06 6354.00 1.06 0.90 0.419152 0.38172 0.02472 0.4233 0.02389 0.5529
+k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml raygentop.v common 53.77 0.44 32980 8 1.81 -1 -1 40540 -1 -1 112 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 87596 214 305 2625 2741 1 1480 640 22 22 484 mult_36 auto 26.11 12249 1.31 0.01 4.3155 -2361.4 -4.3155 4.3155 1.00 0.00334942 0.00290708 0.45395 0.389067 52 27409 32 2.50602e+07 9.60013e+06 1.61880e+06 3344.62 15.18 1.84791 1.62495 22603 23 7808 17648 5084943 1131570 5.03078 5.03078 -2997.26 -5.03078 0 0 2.13063e+06 4402.12 0.43 1.03 0.236297 0.214374 0.0252 0.4216 0.03923 0.5391
+k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml sha.v common 623.50 0.77 38148 20 593.27 -1 -1 95472 -1 -1 205 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 97036 38 36 3404 3440 1 1360 279 19 19 361 clb auto 2.12 13579 1.31 0.01 11.476 -4014.58 -11.476 11.476 0.61 0.00362419 0.00303952 0.555544 0.408923 62 22039 46 1.72706e+07 1.10483e+07 1.42202e+06 3939.11 11.81 1.89391 1.51108 19536 17 5440 19490 633132 108489 13.5704 13.5704 -4723.34 -13.5704 0 0 1.76637e+06 4892.99 0.57 0.77 0.559275 0.495515 0.01144 0.3451 0.02564 0.6293
diff --git a/vtr_flow/tasks/power/power_nofrac/config/config.txt b/vtr_flow/tasks/power/power_nofrac/config/config.txt
index 9f4424a60d0..ccb26327370 100644
--- a/vtr_flow/tasks/power/power_nofrac/config/config.txt
+++ b/vtr_flow/tasks/power/power_nofrac/config/config.txt
@@ -29,16 +29,20 @@ circuit_list_add=mkSMAdapter4B.v
circuit_list_add=or1200.v
circuit_list_add=raygentop.v
circuit_list_add=sha.v
-circuit_list_add=stereovision0.v
-circuit_list_add=stereovision1.v
-circuit_list_add=stereovision2.v
+#These circuits do not go through ACE2. It falsely thinks there are multiple clocks in the circuit. There is a bug with using module instantiation by port when two modules have different names for their clocks, in this case instantiation by name must be used. Tried altering the instantiation method & clock names but did not work. This fixed the error for raygentop.v
+#circuit_list_add=stereovision0.v
+#circuit_list_add=stereovision1.v
+#circuit_list_add=stereovision2.v
+
#circuit_list_add=stereovision3.v
# Add architectures to list to sweep
arch_list_add=k6_N10_I40_Fi6_L4_frac0_ff1_45nm.xml
# Parse info and how to parse
-parse_file=vpr_power_detailed.txt
+#vpr_power_detailed.txt produces incompelete QoR results. (Issue #1749)
+#parse_file=vpr_power_detailed.txt
+parse_file=vpr_power.txt
# Pass requirements
-pass_requirements_file=pass_requirements.txt
+pass_requirements_file=pass_requirements_power.txt
diff --git a/vtr_flow/tasks/power/power_nofrac/config/golden_results.txt b/vtr_flow/tasks/power/power_nofrac/config/golden_results.txt
new file mode 100644
index 00000000000..effb934e1dc
--- /dev/null
+++ b/vtr_flow/tasks/power/power_nofrac/config/golden_results.txt
@@ -0,0 +1,16 @@
+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 total_power routing_power_perc clock_power_perc tile_power_perc
+k6_N10_I40_Fi6_L4_frac0_ff1_45nm.xml bgm.v common 996.18 24.11 392624 22 457.33 -1 -1 152636 -1 -1 3241 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 697664 257 32 32168 31683 1 18834 3541 69 69 4761 clb auto 12.54 272663 104.20 0.61 16.0544 -23810.1 -16.0544 16.0544 39.75 0.0686501 0.0581941 11.2309 8.30308 72 421149 26 2.85477e+08 1.79025e+08 2.26653e+07 4760.63 217.54 43.9413 34.5636 396386 19 86912 410164 24647680 4045668 18.3051 18.3051 -26433.6 -18.3051 0 0 2.84096e+07 5967.16 9.56 12.95 6.60088 5.56121 0.176 0.485 0.0303 0.4847
+k6_N10_I40_Fi6_L4_frac0_ff1_45nm.xml blob_merge.v common 160.77 0.45 59324 18 81.60 -1 -1 67688 -1 -1 685 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 157052 36 100 6600 6700 1 2841 821 33 33 1089 clb auto 1.90 49880 5.37 0.04 9.11388 -2669.3 -9.11388 9.11388 2.50 0.0106408 0.00902749 1.68607 1.2263 58 78148 39 6.0475e+07 3.69175e+07 4.04653e+06 3715.82 49.10 7.17606 5.76709 69473 14 12378 69462 3117547 388750 10.1476 10.1476 -2988.64 -10.1476 0 0 5.16078e+06 4739.01 1.23 1.29 0.677391 0.599031 0.02438 0.3962 0.04361 0.5602
+k6_N10_I40_Fi6_L4_frac0_ff1_45nm.xml boundtop.v common 6.28 0.71 46972 2 0.57 -1 -1 37096 -1 -1 89 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 66172 114 192 455 647 1 308 395 14 14 196 clb auto 0.09 736 0.36 0.00 1.76159 -209.498 -1.76159 1.76159 0.28 0.000584678 0.000515708 0.0983276 0.0862735 36 2153 23 9.20055e+06 4.79657e+06 427814. 2182.73 1.52 0.295519 0.263969 1732 10 542 787 55965 15257 2.29042 2.29042 -260.053 -2.29042 0 0 528560. 2696.73 0.15 0.05 0.0302233 0.0277977 0.006247 0.4018 0.129 0.4692
+k6_N10_I40_Fi6_L4_frac0_ff1_45nm.xml ch_intrinsics.v common 3.72 0.05 9228 3 0.28 -1 -1 36108 -1 -1 70 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 64036 99 130 363 493 1 254 300 12 12 144 clb auto 0.07 624 0.27 0.00 1.9342 -205.561 -1.9342 1.9342 0.26 0.000420454 0.000368236 0.0728933 0.0630404 36 1776 21 5.66058e+06 4.32058e+06 292866. 2033.79 1.15 0.219287 0.192795 1461 12 598 830 76776 25694 2.6407 2.6407 -248.082 -2.6407 0 0 363034. 2521.07 0.09 0.05 0.0254275 0.0233243 0.00729 0.2201 0.07406 0.7058
+k6_N10_I40_Fi6_L4_frac0_ff1_45nm.xml diffeq1.v common 13.22 0.04 9144 15 0.48 -1 -1 34588 -1 -1 52 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 78820 162 96 999 932 1 707 315 16 16 256 mult_36 auto 0.25 5402 0.91 0.01 20.0113 -1727.78 -20.0113 20.0113 0.61 0.00338847 0.00310892 0.403941 0.359303 52 11718 35 1.21132e+07 4.78249e+06 771607. 3014.09 7.25 1.04816 0.945674 9869 20 3159 6858 2186883 579440 22.1421 22.1421 -1952.73 -22.1421 0 0 1.01513e+06 3965.34 0.18 0.39 0.0892249 0.0832632 0.007598 0.3771 0.01802 0.6049
+k6_N10_I40_Fi6_L4_frac0_ff1_45nm.xml diffeq2.v common 14.19 0.02 8228 14 0.32 -1 -1 33492 -1 -1 37 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 69732 66 96 719 590 1 552 206 18 18 324 mult_36 auto 0.20 4964 0.80 0.01 15.2103 -911.934 -15.2103 15.2103 0.86 0.00316724 0.00291963 0.432401 0.393932 38 12603 25 1.57076e+07 4.76608e+06 768853. 2373.00 7.71 1.04453 0.959193 10465 19 2941 6917 2782951 674398 17.613 17.613 -1073 -17.613 0 0 971792. 2999.36 0.32 0.78 0.157262 0.148259 0.008925 0.3264 0.01978 0.6538
+k6_N10_I40_Fi6_L4_frac0_ff1_45nm.xml LU8PEEng.v common 1078.19 21.20 227532 129 258.81 -1 -1 100820 -1 -1 2654 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 602232 114 102 29578 29304 1 15480 2922 62 62 3844 clb auto 12.14 231440 68.57 0.36 74.447 -57558.1 -74.447 74.447 28.18 0.0683549 0.0484705 11.7172 8.54631 74 345516 35 2.30929e+08 1.70314e+08 1.86412e+07 4849.42 572.48 39.4707 30.3522 322242 21 58780 244354 38044494 7494189 86.8479 86.8479 -74857.6 -86.8479 -13.2074 -0.293253 2.32921e+07 6059.34 6.83 12.38 4.21141 3.46641 0.1006 0.4297 0.01197 0.5584
+k6_N10_I40_Fi6_L4_frac0_ff1_45nm.xml LU32PEEng.v common 4802.37 169.65 770560 128 1480.56 -1 -1 298640 -1 -1 9168 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2182068 114 102 102506 101104 1 54645 9583 113 113 12769 clb auto 57.57 1112759 598.94 2.87 75.4885 -376364 -75.4885 75.4885 80.55 0.25457 0.211431 43.5632 32.7369 106 1477755 46 7.84268e+08 5.98238e+08 8.53330e+07 6682.83 1879.38 172.359 135.102 1390670 18 192854 861898 244824100 63341117 85.4957 85.4957 -505886 -85.4957 -25.031 -0.172573 1.08019e+08 8459.43 37.33 92.77 16.9632 14.5404 0.4082 0.4932 0.0107 0.4961
+k6_N10_I40_Fi6_L4_frac0_ff1_45nm.xml mcml.v common 12558.62 67.96 954112 75 9020.24 -1 -1 447752 -1 -1 8821 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 1959676 36 33 134466 132924 1 42854 9076 111 111 12321 clb auto 45.18 575706 333.87 2.01 60.7822 -295117 -60.7822 60.7822 77.75 0.185888 0.154855 36.2428 27.7376 72 778217 49 7.58755e+08 5.73176e+08 5.96025e+07 4837.47 2414.79 132.258 106.03 727476 19 143272 491382 85992415 20238847 67.3582 67.3582 -447037 -67.3582 -0.103902 -0.0259755 7.48566e+07 6075.53 29.25 33.44 12.979 10.9948 0.302 0.3843 0.01466 0.6011
+k6_N10_I40_Fi6_L4_frac0_ff1_45nm.xml mkDelayWorker32B.v common 84.85 0.92 78736 5 11.67 -1 -1 52380 -1 -1 503 506 47 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 267320 506 553 3285 3838 1 3016 1609 50 50 2500 memory auto 3.48 14770 5.49 0.04 6.53689 -1745.91 -6.53689 6.53689 18.68 0.011478 0.0104038 2.76336 2.47792 38 22734 16 1.47946e+08 5.28654e+07 6.57953e+06 2631.81 25.67 7.52918 6.89426 21776 15 4094 5229 3971502 1020635 7.2002 7.2002 -2141.68 -7.2002 -1.75953 -0.218188 8.28755e+06 3315.02 2.59 1.12 0.51092 0.480739 0.1667 0.1414 0.03866 0.8199
+k6_N10_I40_Fi6_L4_frac0_ff1_45nm.xml mkPktMerge.v common 22.93 0.14 16972 2 0.13 -1 -1 33700 -1 -1 32 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 91656 311 156 972 1128 1 953 514 28 28 784 memory auto 0.40 7734 1.21 0.01 4.26529 -4145.29 -4.26529 4.26529 2.09 0.00386849 0.00326477 0.556787 0.470656 36 14427 19 4.25198e+07 9.94461e+06 1.86960e+06 2384.70 13.34 2.09046 1.84932 13092 12 2490 2836 2393772 710314 4.393 4.393 -4974.69 -4.393 -24.4362 -0.341744 2.30301e+06 2937.52 0.57 0.51 0.0981844 0.089379 0.08209 0.1482 0.01757 0.8342
+k6_N10_I40_Fi6_L4_frac0_ff1_45nm.xml mkSMAdapter4B.v common 25.51 0.37 31972 7 3.61 -1 -1 37864 -1 -1 194 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 84592 193 205 2232 2437 1 1205 597 20 20 400 memory auto 0.76 9393 3.18 0.02 4.79416 -2611.33 -4.79416 4.79416 1.16 0.00690124 0.00610717 1.40618 1.16172 50 15931 20 2.07112e+07 1.31954e+07 1.21314e+06 3032.86 9.42 3.00901 2.5651 14860 19 3910 10326 905742 215407 5.57131 5.57131 -3057.06 -5.57131 -9.74406 -0.360359 1.55522e+06 3888.04 0.48 0.61 0.373151 0.339258 0.02725 0.2123 0.02608 0.7616
+k6_N10_I40_Fi6_L4_frac0_ff1_45nm.xml or1200.v common 62.80 0.46 40892 27 5.17 -1 -1 43888 -1 -1 310 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 112984 385 394 3979 4310 1 2327 1092 27 27 729 io auto 1.09 32208 6.58 0.06 13.8008 -12292.5 -13.8008 13.8008 1.60 0.0154967 0.0137496 2.29112 1.90555 66 52753 38 3.93038e+07 1.81991e+07 3.07043e+06 4211.84 36.07 5.20268 4.47628 46527 14 9945 38363 3256607 624611 15.244 15.244 -14381.7 -15.244 0 0 3.80131e+06 5214.42 0.94 0.97 0.378691 0.347548 0.02043 0.4542 0.02588 0.5199
+k6_N10_I40_Fi6_L4_frac0_ff1_45nm.xml raygentop.v common 27.10 0.42 32912 8 1.48 -1 -1 40568 -1 -1 164 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 85992 214 305 2625 2741 1 1484 692 22 22 484 mult_36 auto 0.94 12254 2.98 0.03 4.33375 -2436.25 -4.33375 4.33375 1.51 0.0074118 0.00667342 1.29634 1.07964 46 27339 29 2.50602e+07 1.24026e+07 1.39451e+06 2881.21 10.01 2.37762 2.03755 22113 20 7094 17358 4643777 1014001 5.16832 5.16832 -3054.89 -5.16832 0 0 1.79209e+06 3702.67 0.36 0.88 0.211034 0.192565 0.02097 0.4776 0.04283 0.4796
+k6_N10_I40_Fi6_L4_frac0_ff1_45nm.xml sha.v common 710.00 0.87 38160 20 674.57 -1 -1 95308 -1 -1 260 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 95880 38 36 3404 3440 1 1302 334 21 21 441 clb auto 1.25 15053 1.42 0.01 12.1417 -4462.98 -12.1417 12.1417 1.06 0.00406402 0.00338654 0.540501 0.397001 50 24207 39 2.24358e+07 1.40124e+07 1.34532e+06 3050.61 16.10 2.33213 1.87284 21652 18 5200 21310 701520 120083 14.6896 14.6896 -4988.15 -14.6896 0 0 1.72482e+06 3911.16 0.56 0.77 0.556845 0.493347 0.01015 0.385 0.02894 0.586
diff --git a/vtr_flow/tasks/power/power_nofrac_130nm/config/config.txt b/vtr_flow/tasks/power/power_nofrac_130nm/config/config.txt
index ec5594c6f94..77ec9bcb4d8 100644
--- a/vtr_flow/tasks/power/power_nofrac_130nm/config/config.txt
+++ b/vtr_flow/tasks/power/power_nofrac_130nm/config/config.txt
@@ -29,16 +29,19 @@ circuit_list_add=mkSMAdapter4B.v
circuit_list_add=or1200.v
circuit_list_add=raygentop.v
circuit_list_add=sha.v
-circuit_list_add=stereovision0.v
-circuit_list_add=stereovision1.v
-circuit_list_add=stereovision2.v
+#These circuits do not go through ACE2. It falsely thinks there are multiple clocks in the circuit. There is a bug with using module instantiation by port when two modules have different names for their clocks, in this case instantiation by name must be used. Tried altering the instantiation method & clock names but did not work. This fixed the error for raygentop.v
+#circuit_list_add=stereovision0.v
+#circuit_list_add=stereovision1.v
+#circuit_list_add=stereovision2.v
+
#circuit_list_add=stereovision3.v
# Add architectures to list to sweep
arch_list_add=k6_N10_I40_Fi6_L4_frac0_ff1_130nm.xml
# Parse info and how to parse
-parse_file=vpr_power_detailed.txt
-
+#vpr_power_detailed.txt produces incompelete QoR results. (Issue #1749)
+#parse_file=vpr_power_detailed.txt
+parse_file=vpr_power.txt
# Pass requirements
-pass_requirements_file=pass_requirements.txt
+pass_requirements_file=pass_requirements_power.txt
diff --git a/vtr_flow/tasks/power/power_nofrac_130nm/config/golden_results.txt b/vtr_flow/tasks/power/power_nofrac_130nm/config/golden_results.txt
new file mode 100644
index 00000000000..b02990caeb2
--- /dev/null
+++ b/vtr_flow/tasks/power/power_nofrac_130nm/config/golden_results.txt
@@ -0,0 +1,16 @@
+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 total_power routing_power_perc clock_power_perc tile_power_perc
+k6_N10_I40_Fi6_L4_frac0_ff1_130nm.xml bgm.v common 1001.49 21.76 392604 22 498.71 -1 -1 152660 -1 -1 3226 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 688364 257 32 32168 31683 1 18850 3526 68 68 4624 clb auto 17.47 261060 87.67 0.59 17.8318 -23770.9 -17.8318 17.8318 30.56 0.0778818 0.056732 9.6271 7.0857 66 405813 23 2.2854e+08 1.73861e+08 2.05906e+07 4452.98 205.86 40.3086 31.5187 386195 20 91510 436169 24669839 3969839 20.1129 20.1129 -26723.2 -20.1129 0 0 2.54527e+07 5504.48 7.31 12.16 5.8409 4.90804 1.317 0.3307 0.02443 0.6449
+k6_N10_I40_Fi6_L4_frac0_ff1_130nm.xml blob_merge.v common 167.26 0.64 59272 18 85.67 -1 -1 67556 -1 -1 688 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 157224 36 100 6600 6700 1 2823 824 33 33 1089 clb auto 1.83 51124 5.45 0.04 9.1879 -2675.84 -9.1879 9.1879 3.03 0.0107914 0.0091292 1.70375 1.25499 62 75698 38 4.93869e+07 3.70792e+07 4.34183e+06 3986.99 47.69 8.15251 6.57611 69942 13 11685 66360 2995952 372422 10.9318 10.9318 -3032.11 -10.9318 0 0 5.36507e+06 4926.60 1.67 1.73 0.959089 0.833779 0.2263 0.2852 0.02962 0.6852
+k6_N10_I40_Fi6_L4_frac0_ff1_130nm.xml boundtop.v common 7.91 0.79 46916 2 0.44 -1 -1 37068 -1 -1 89 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 66072 114 192 455 647 1 308 395 14 14 196 clb auto 0.09 761 0.57 0.00 1.6729 -216.114 -1.6729 1.6729 0.43 0.000980915 0.000860283 0.162867 0.140903 30 2386 29 8.01255e+06 4.79657e+06 375824. 1917.47 2.35 0.543892 0.483657 1961 9 621 864 67469 18554 2.32295 2.32295 -279.266 -2.32295 0 0 464326. 2369.01 0.13 0.05 0.0282556 0.0259956 0.04863 0.2532 0.09951 0.6473
+k6_N10_I40_Fi6_L4_frac0_ff1_130nm.xml ch_intrinsics.v common 3.32 0.05 9360 3 0.31 -1 -1 36188 -1 -1 70 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 64648 99 130 363 493 1 254 300 12 12 144 clb auto 0.05 637 0.31 0.00 1.99999 -206.507 -1.99999 1.99999 0.20 0.000432724 0.000379633 0.0837723 0.0723465 40 1648 20 4.86858e+06 4.32058e+06 318116. 2209.14 0.91 0.237158 0.209278 1482 12 555 807 64512 21941 2.70645 2.70645 -249.933 -2.70645 0 0 401429. 2787.70 0.10 0.03 0.0147293 0.0134884 0.04238 0.2004 0.0875 0.7121
+k6_N10_I40_Fi6_L4_frac0_ff1_130nm.xml diffeq1.v common 15.26 0.04 8992 15 0.43 -1 -1 34612 -1 -1 52 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 75208 162 96 999 932 1 707 315 16 16 256 mult_36 auto 0.25 5509 1.04 0.01 19.9589 -1764.56 -19.9589 19.9589 0.54 0.00345671 0.00315515 0.49119 0.441855 50 11983 29 9.73716e+06 2.80249e+06 746321. 2915.31 8.84 1.675 1.52572 9956 21 3230 6801 2149843 531129 23.0252 23.0252 -2035.7 -23.0252 0 0 955817. 3733.66 0.24 0.67 0.196275 0.182185 0.04763 0.329 0.01818 0.6528
+k6_N10_I40_Fi6_L4_frac0_ff1_130nm.xml diffeq2.v common 14.16 0.03 8204 14 0.33 -1 -1 33608 -1 -1 37 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 69676 66 96 719 590 1 552 206 18 18 324 mult_36 auto 0.13 4864 0.41 0.00 15.2361 -903.939 -15.2361 15.2361 0.52 0.00143401 0.00133028 0.201586 0.183051 38 12103 29 1.25396e+07 1.99408e+06 768853. 2373.00 8.97 1.06094 0.979285 9845 18 2999 6779 2560467 614308 17.5608 17.5608 -1085.85 -17.5608 0 0 971792. 2999.36 0.29 0.67 0.146814 0.137805 0.05563 0.2886 0.0218 0.6896
+k6_N10_I40_Fi6_L4_frac0_ff1_130nm.xml LU8PEEng.v common 1051.23 21.64 227552 129 257.48 -1 -1 100900 -1 -1 2650 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 601952 114 102 29578 29304 1 15467 2918 62 62 3844 clb auto 13.40 241228 52.94 0.32 74.4372 -62189.2 -74.4372 74.4372 23.52 0.0565953 0.0470431 9.63737 6.94589 78 351833 27 1.89352e+08 1.66931e+08 1.93958e+07 5045.73 553.88 31.7783 24.1038 323930 18 56919 237907 40655830 8858260 88.4711 88.4711 -81623.7 -88.4711 -9.96178 -0.204056 2.45017e+07 6374.02 7.72 14.00 4.00906 3.29306 0.8797 0.3519 0.009987 0.6381
+k6_N10_I40_Fi6_L4_frac0_ff1_130nm.xml LU32PEEng.v common 6447.09 169.67 770432 128 1492.76 -1 -1 298656 -1 -1 9181 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2176996 114 102 102506 101104 1 54589 9596 113 113 12769 clb auto 55.87 1137762 572.17 3.06 75.71 -396743 -75.71 75.71 77.98 0.321324 0.215019 45.3253 32.6934 110 1496997 37 6.3458e+08 5.86268e+08 8.84209e+07 6924.65 3538.90 180.068 139.344 1409291 19 192509 859898 237614431 59510906 87.2402 87.2402 -561033 -87.2402 -32.0581 -0.163771 1.12508e+08 8811.03 47.89 89.00 15.769 13.0847 3.485 0.4169 0.0091 0.574
+k6_N10_I40_Fi6_L4_frac0_ff1_130nm.xml mcml.v common 12334.21 70.92 954100 75 8916.05 -1 -1 447688 -1 -1 8827 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 1957772 36 33 134466 132924 1 42877 9082 111 111 12321 clb auto 36.66 575500 314.82 1.83 62.6821 -323144 -62.6821 62.6821 76.41 0.186016 0.15549 32.2593 24.8172 76 743108 23 6.19761e+08 5.62809e+08 6.20212e+07 5033.78 2292.00 121.971 97.9344 721017 18 143488 487489 76331225 16939092 68.3856 68.3856 -394964 -68.3856 -0.182629 -0.0183325 7.73530e+07 6278.14 25.01 32.86 13.9467 11.9616 2.594 0.3157 0.0122 0.6721
+k6_N10_I40_Fi6_L4_frac0_ff1_130nm.xml mkDelayWorker32B.v common 76.49 0.83 78784 5 9.16 -1 -1 52484 -1 -1 503 506 47 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 267120 506 553 3285 3838 1 3016 1609 50 50 2500 memory auto 3.02 13920 5.12 0.04 6.28873 -1883.39 -6.28873 6.28873 14.85 0.0115589 0.0104695 2.53168 2.2625 38 21473 15 1.19435e+08 5.28654e+07 6.57953e+06 2631.81 25.11 7.18953 6.58087 20533 14 3920 4882 2935787 757946 7.26179 7.26179 -2448.47 -7.26179 -6.93636 -0.336313 8.28755e+06 3315.02 2.40 1.31 0.880661 0.81762 0.81 0.1562 0.05268 0.7912
+k6_N10_I40_Fi6_L4_frac0_ff1_130nm.xml mkPktMerge.v common 21.84 0.14 17016 2 0.12 -1 -1 33664 -1 -1 32 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 91676 311 156 972 1128 1 953 514 28 28 784 memory auto 0.47 8378 0.91 0.01 4.54593 -4260.94 -4.54593 4.54593 2.24 0.00273473 0.00231106 0.40801 0.339559 34 15368 24 3.53916e+07 9.94461e+06 1.78976e+06 2282.86 11.11 1.3651 1.18373 14436 11 2754 3098 2475725 741589 5.29017 5.29017 -5136.96 -5.29017 -11.9117 -0.287771 2.20520e+06 2812.76 0.77 0.78 0.147992 0.134549 0.3181 0.1761 0.02486 0.799
+k6_N10_I40_Fi6_L4_frac0_ff1_130nm.xml mkSMAdapter4B.v common 20.88 0.28 31960 7 3.40 -1 -1 37832 -1 -1 194 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 84480 193 205 2232 2437 1 1205 597 20 20 400 memory auto 0.75 9284 1.65 0.01 4.72106 -2630.81 -4.72106 4.72106 0.96 0.00308397 0.00262651 0.56208 0.453113 40 19411 34 1.75432e+07 1.31954e+07 997078. 2492.70 7.10 1.42987 1.19645 15360 16 4361 11140 1028207 247300 5.24416 5.24416 -3096.36 -5.24416 -3.23175 -0.336313 1.25462e+06 3136.55 0.40 0.61 0.335972 0.301138 0.1469 0.1981 0.03187 0.7701
+k6_N10_I40_Fi6_L4_frac0_ff1_130nm.xml or1200.v common 55.00 0.43 40860 27 4.88 -1 -1 43696 -1 -1 309 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 106532 385 394 3979 4310 1 2333 1091 27 27 729 io auto 1.70 32531 4.09 0.03 14.1081 -12584.6 -14.1081 14.1081 1.95 0.00740925 0.0065677 1.23839 1.01124 68 54523 49 3.21756e+07 1.77492e+07 3.14616e+06 4315.72 28.13 4.75921 4.14104 46739 15 9844 37757 3046413 577311 16.5388 16.5388 -14240.5 -16.5388 0 0 3.87891e+06 5320.86 0.92 0.94 0.398485 0.361806 0.1582 0.3526 0.02101 0.6264
+k6_N10_I40_Fi6_L4_frac0_ff1_130nm.xml raygentop.v common 24.67 0.31 32960 8 1.64 -1 -1 40480 -1 -1 164 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 86144 214 305 2625 2741 1 1484 692 22 22 484 mult_36 auto 0.75 12265 1.48 0.02 4.39099 -2475.96 -4.39099 4.39099 0.97 0.00333309 0.00291795 0.468538 0.399987 46 27273 31 2.11002e+07 8.83862e+06 1.39451e+06 2881.21 11.34 1.47185 1.28893 21854 20 7330 17866 5375653 1185020 5.02034 5.02034 -3160.56 -5.02034 0 0 1.79209e+06 3702.67 0.37 0.93 0.198049 0.18148 0.1435 0.3317 0.0431 0.6252
+k6_N10_I40_Fi6_L4_frac0_ff1_130nm.xml sha.v common 682.24 0.86 38196 20 656.07 -1 -1 95308 -1 -1 260 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 95664 38 36 3404 3440 1 1302 334 21 21 441 clb auto 0.86 14925 1.51 0.01 12.0697 -4701.41 -12.0697 12.0697 0.77 0.00441407 0.00311217 0.589359 0.421925 48 24188 35 1.92678e+07 1.40124e+07 1.30072e+06 2949.48 9.11 2.17633 1.73131 21808 16 5267 21888 729350 123404 14.892 14.892 -5301.84 -14.892 0 0 1.67072e+06 3788.48 0.33 0.39 0.242653 0.21569 0.09058 0.2567 0.02193 0.7214
diff --git a/vtr_flow/tasks/power/power_nofrac_22nm/config/config.txt b/vtr_flow/tasks/power/power_nofrac_22nm/config/config.txt
index a1e8d766235..cf276bfda1a 100644
--- a/vtr_flow/tasks/power/power_nofrac_22nm/config/config.txt
+++ b/vtr_flow/tasks/power/power_nofrac_22nm/config/config.txt
@@ -29,16 +29,20 @@ circuit_list_add=mkSMAdapter4B.v
circuit_list_add=or1200.v
circuit_list_add=raygentop.v
circuit_list_add=sha.v
-circuit_list_add=stereovision0.v
-circuit_list_add=stereovision1.v
-circuit_list_add=stereovision2.v
+#These circuits do not go through ACE2. It falsely thinks there are multiple clocks in the circuit. There is a bug with using module instantiation by port when two modules have different names for their clocks, in this case instantiation by name must be used. Tried altering the instantiation method & clock names but did not work. This fixed the error for raygentop.v
+#circuit_list_add=stereovision0.v
+#circuit_list_add=stereovision1.v
+#circuit_list_add=stereovision2.v
+
#circuit_list_add=stereovision3.v
# Add architectures to list to sweep
arch_list_add=k6_N10_I40_Fi6_L4_frac0_ff1_22nm.xml
# Parse info and how to parse
-parse_file=vpr_power_detailed.txt
+#vpr_power_detailed.txt produces incompelete QoR results. (Issue #1749)
+#parse_file=vpr_power_detailed.txt
+parse_file=vpr_power.txt
# Pass requirements
-pass_requirements_file=pass_requirements.txt
+pass_requirements_file=pass_requirements_power.txt
diff --git a/vtr_flow/tasks/power/power_nofrac_22nm/config/golden_results.txt b/vtr_flow/tasks/power/power_nofrac_22nm/config/golden_results.txt
new file mode 100644
index 00000000000..5bb0326e557
--- /dev/null
+++ b/vtr_flow/tasks/power/power_nofrac_22nm/config/golden_results.txt
@@ -0,0 +1,16 @@
+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 total_power routing_power_perc clock_power_perc tile_power_perc
+k6_N10_I40_Fi6_L4_frac0_ff1_22nm.xml bgm.v common 996.00 22.76 392552 22 484.66 -1 -1 152608 -1 -1 3236 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 696420 257 32 32168 31683 1 18840 3536 69 69 4761 clb auto 12.75 268683 88.75 0.77 16.6755 -23588.6 -16.6755 16.6755 35.99 0.0685939 0.0581003 9.92569 7.33289 66 415301 39 2.85477e+08 1.78756e+08 2.12066e+07 4454.23 208.60 40.8397 32.0344 392814 19 94025 445220 23579087 3649236 18.8456 18.8456 -26085.3 -18.8456 0 0 2.62127e+07 5505.72 9.41 12.87 6.10538 5.12512 0.4132 0.5778 0.009963 0.4123
+k6_N10_I40_Fi6_L4_frac0_ff1_22nm.xml blob_merge.v common 163.11 0.51 59312 18 85.26 -1 -1 67664 -1 -1 693 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 156548 36 100 6600 6700 1 2812 829 33 33 1089 clb auto 2.76 49117 5.91 0.05 9.00635 -2550.31 -9.00635 9.00635 4.65 0.021806 0.0161817 1.90562 1.41555 58 75913 46 6.0475e+07 3.73487e+07 4.04653e+06 3715.82 41.19 8.6833 7.02027 68205 13 12026 67946 2984964 374164 10.0384 10.0384 -2844.79 -10.0384 0 0 5.16078e+06 4739.01 1.25 1.25 0.665477 0.58228 0.0724 0.5442 0.009035 0.4468
+k6_N10_I40_Fi6_L4_frac0_ff1_22nm.xml boundtop.v common 5.35 0.65 47004 2 0.37 -1 -1 37032 -1 -1 89 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 66368 114 192 455 647 1 308 395 14 14 196 clb auto 0.09 759 0.31 0.00 1.6727 -215.299 -1.6727 1.6727 0.28 0.000601197 0.000524328 0.0837469 0.0730603 30 2171 17 9.20055e+06 4.79657e+06 375824. 1917.47 1.29 0.262802 0.234885 1889 9 584 863 65781 17855 2.22723 2.22723 -273.702 -2.22723 0 0 464326. 2369.01 0.09 0.03 0.0161 0.0149204 0.008546 0.539 0.03692 0.4241
+k6_N10_I40_Fi6_L4_frac0_ff1_22nm.xml ch_intrinsics.v common 3.22 0.05 9352 3 0.19 -1 -1 36108 -1 -1 70 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 64504 99 130 363 493 1 254 300 12 12 144 clb auto 0.07 650 0.26 0.00 1.98229 -203.664 -1.98229 1.98229 0.18 0.000422446 0.000371088 0.0726229 0.0626495 38 1539 19 5.66058e+06 4.32058e+06 306247. 2126.71 0.95 0.229358 0.202873 1364 11 498 718 49506 17330 2.41077 2.41077 -237.454 -2.41077 0 0 388532. 2698.14 0.09 0.04 0.0237922 0.0218133 0.008025 0.4683 0.03177 0.4999
+k6_N10_I40_Fi6_L4_frac0_ff1_22nm.xml diffeq1.v common 8.45 0.04 9056 15 0.30 -1 -1 34548 -1 -1 52 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 78956 162 96 999 932 1 707 315 16 16 256 mult_36 auto 0.25 5449 0.57 0.01 19.6298 -1714.57 -19.6298 19.6298 0.38 0.00162281 0.00148249 0.232576 0.208213 46 12294 42 1.21132e+07 4.78249e+06 696785. 2721.82 3.66 0.703549 0.638643 10169 20 3095 6756 2162390 571562 22.2543 22.2543 -1981.03 -22.2543 0 0 894618. 3494.60 0.16 0.39 0.09022 0.0840685 0.01466 0.5784 0.007708 0.4139
+k6_N10_I40_Fi6_L4_frac0_ff1_22nm.xml diffeq2.v common 11.01 0.02 8264 14 0.34 -1 -1 33480 -1 -1 37 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 69840 66 96 719 590 1 552 206 18 18 324 mult_36 auto 0.19 4999 0.43 0.00 15.1924 -898.447 -15.1924 15.1924 0.53 0.00141419 0.00130537 0.205988 0.187271 46 12114 41 1.57076e+07 4.76608e+06 907093. 2799.67 6.09 0.748677 0.68775 9933 21 2835 6543 3130704 735040 17.4114 17.4114 -1054.2 -17.4114 0 0 1.16496e+06 3595.55 0.21 0.48 0.0818561 0.0763921 0.01788 0.5725 0.008565 0.4189
+k6_N10_I40_Fi6_L4_frac0_ff1_22nm.xml LU8PEEng.v common 1113.60 20.34 227632 129 275.28 -1 -1 100716 -1 -1 2649 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 601916 114 102 29578 29304 1 15497 2917 62 62 3844 clb auto 13.06 237129 62.44 0.36 72.5287 -56507.2 -72.5287 72.5287 25.66 0.056505 0.0484137 9.82269 7.10417 78 347366 30 2.30929e+08 1.70045e+08 1.93958e+07 5045.73 598.26 33.802 26.018 319188 17 56175 236677 33775645 7134565 85.2757 85.2757 -68022.2 -85.2757 -39.3096 -0.304527 2.45017e+07 6374.02 7.66 12.30 4.21977 3.51433 0.3441 0.6076 0.006901 0.3855
+k6_N10_I40_Fi6_L4_frac0_ff1_22nm.xml LU32PEEng.v common 15356.79 172.49 770484 128 1432.68 -1 -1 298492 -1 -1 9172 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2054164 114 102 102506 101104 1 54560 9587 113 113 12769 clb auto 49.87 1125296 595.51 3.44 73.7538 -356623 -73.7538 73.7538 92.43 0.567144 0.424096 47.588 34.9825 104 1482043 41 7.84268e+08 5.98453e+08 8.40019e+07 6578.58 12454.20 151.121 117.377 1403946 17 192077 858205 263181417 67543863 84.0599 84.0599 -490488 -84.0599 -15.2404 -0.180527 1.06512e+08 8341.49 36.57 95.65 14.8559 12.251 1.403 0.6605 0.006032 0.3334
+k6_N10_I40_Fi6_L4_frac0_ff1_22nm.xml mcml.v common 11462.80 70.82 954224 75 9095.38 -1 -1 447776 -1 -1 8823 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 1956568 36 33 134466 132924 1 42817 9078 111 111 12321 clb auto 36.55 558325 301.46 1.94 59.2298 -306548 -59.2298 59.2298 78.00 0.185798 0.155767 30.5864 23.4743 68 763856 45 7.58755e+08 5.73284e+08 5.71375e+07 4637.40 1319.29 124.824 100.048 705876 19 148843 504532 75600543 16974510 65.3806 65.3806 -383798 -65.3806 -0.194093 -0.0485233 7.04391e+07 5717.00 22.66 28.95 11.6583 10.0265 0.9287 0.5608 0.007892 0.4313
+k6_N10_I40_Fi6_L4_frac0_ff1_22nm.xml mkDelayWorker32B.v common 81.67 1.14 78756 5 9.78 -1 -1 52568 -1 -1 504 506 47 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 267552 506 553 3285 3838 1 3022 1610 50 50 2500 memory auto 4.17 14409 5.16 0.04 6.47354 -1700.16 -6.47354 6.47354 16.12 0.0116911 0.0106314 2.56244 2.29056 38 22080 17 1.47946e+08 5.29193e+07 6.57953e+06 2631.81 25.06 7.2849 6.66912 21046 14 3647 4659 3366712 828652 7.40517 7.40517 -2143.07 -7.40517 -7.58418 -0.229289 8.28755e+06 3315.02 2.44 0.96 0.476925 0.449357 0.165 0.3903 0.02078 0.5889
+k6_N10_I40_Fi6_L4_frac0_ff1_22nm.xml mkPktMerge.v common 21.34 0.15 17044 2 0.13 -1 -1 33644 -1 -1 32 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 91816 311 156 972 1128 1 953 514 28 28 784 memory auto 0.46 8001 1.45 0.02 3.70978 -3981.66 -3.70978 3.70978 2.52 0.00964772 0.00848806 0.696781 0.595823 38 14152 13 4.25198e+07 9.94461e+06 1.95643e+06 2495.44 10.53 1.74935 1.52648 12908 12 2387 2684 2258138 638401 4.13117 4.13117 -4657.46 -4.13117 -28.4004 -0.328977 2.46901e+06 3149.24 0.62 0.45 0.0963053 0.0880007 0.0681 0.3582 0.01069 0.6311
+k6_N10_I40_Fi6_L4_frac0_ff1_22nm.xml mkSMAdapter4B.v common 23.84 0.37 31964 7 3.79 -1 -1 37944 -1 -1 192 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 84352 193 205 2232 2437 1 1200 595 20 20 400 memory auto 0.55 9400 1.60 0.01 4.48327 -2633.22 -4.48327 4.48327 0.69 0.00284841 0.00243428 0.547671 0.442183 46 17302 26 2.07112e+07 1.30876e+07 1.13224e+06 2830.60 9.58 2.17408 1.8639 15204 15 4316 11205 988592 237733 5.40424 5.40424 -3031.51 -5.40424 -6.91684 -0.344875 1.45490e+06 3637.26 0.41 0.56 0.321683 0.293747 0.03032 0.4566 0.01191 0.5315
+k6_N10_I40_Fi6_L4_frac0_ff1_22nm.xml or1200.v common 56.74 0.60 40792 27 6.05 -1 -1 43664 -1 -1 305 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 111260 385 394 3979 4310 1 2325 1087 27 27 729 io auto 1.09 32178 6.38 0.07 13.569 -11878.3 -13.569 13.569 1.59 0.0225141 0.0201672 2.4187 2.01787 70 52633 43 3.93038e+07 1.79297e+07 3.21761e+06 4413.73 27.32 6.23023 5.40292 46310 13 9634 37512 2966762 564542 15.0206 15.0206 -13271.1 -15.0206 0 0 4.03559e+06 5535.79 1.42 1.56 0.721129 0.650534 0.05521 0.6228 0.007223 0.37
+k6_N10_I40_Fi6_L4_frac0_ff1_22nm.xml raygentop.v common 22.93 0.38 32936 8 1.39 -1 -1 40440 -1 -1 164 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 85908 214 305 2625 2741 1 1484 692 22 22 484 mult_36 auto 0.71 12198 1.39 0.02 4.40807 -2352.47 -4.40807 4.40807 0.91 0.00325733 0.00284932 0.4473 0.382488 46 26824 35 2.50602e+07 1.24026e+07 1.39451e+06 2881.21 10.23 1.76302 1.5453 21725 17 6484 15419 4582616 1017667 4.82511 4.82511 -2928.15 -4.82511 0 0 1.79209e+06 3702.67 0.49 1.02 0.245602 0.225696 0.03159 0.5833 0.01469 0.402
+k6_N10_I40_Fi6_L4_frac0_ff1_22nm.xml sha.v common 682.91 0.82 38152 20 651.39 -1 -1 95488 -1 -1 260 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 95608 38 36 3404 3440 1 1302 334 21 21 441 clb auto 1.24 15283 1.47 0.01 11.9452 -4468.63 -11.9452 11.9452 0.84 0.00498693 0.00354808 0.577831 0.409821 50 24872 32 2.24358e+07 1.40124e+07 1.34532e+06 3050.61 13.14 2.28158 1.81238 21995 16 5111 20558 675574 115537 14.0924 14.0924 -4962.06 -14.0924 0 0 1.72482e+06 3911.16 0.46 0.44 0.286126 0.245556 0.02763 0.5125 0.007754 0.4797
diff --git a/vtr_flow/tasks/power/power_quick/config/config.txt b/vtr_flow/tasks/power/power_quick/config/config.txt
index b89ebd2adb8..b61b38dbc8d 100644
--- a/vtr_flow/tasks/power/power_quick/config/config.txt
+++ b/vtr_flow/tasks/power/power_quick/config/config.txt
@@ -41,4 +41,4 @@ arch_list_add=k6_frac_N10_mem32K_40nm.xml
parse_file=vpr_power.txt
# Pass requirements
-pass_requirements_file=pass_requirements.txt
+pass_requirements_file=pass_requirements_power.txt
diff --git a/vtr_flow/tasks/power/power_quick/config/golden_results.txt b/vtr_flow/tasks/power/power_quick/config/golden_results.txt
new file mode 100644
index 00000000000..b7986e36fa6
--- /dev/null
+++ b/vtr_flow/tasks/power/power_quick/config/golden_results.txt
@@ -0,0 +1,11 @@
+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 total_power routing_power_perc clock_power_perc tile_power_perc
+k6_frac_N10_mem32K_40nm.xml blob_merge.v common 149.42 0.67 59296 18 87.49 -1 -1 67848 -1 -1 567 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 162376 36 100 6600 6700 1 2796 703 30 30 900 clb auto 4.86 45280 5.29 0.04 9.00388 -2553.91 -9.00388 9.00388 2.16 0.0111997 0.0095747 1.81163 1.36443 64 69768 27 4.8774e+07 3.05579e+07 3.87092e+06 4301.02 27.07 6.73295 5.4421 65164 13 12410 63616 2886592 377212 10.3791 10.3791 -2909.67 -10.3791 0 0 4.83441e+06 5371.56 1.17 1.23 0.694718 0.616406 0.025 0.3666 0.03807 0.5953
+k6_frac_N10_mem32K_40nm.xml boundtop.v common 7.22 0.81 46920 2 0.57 -1 -1 37012 -1 -1 82 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 69704 114 192 455 647 1 312 388 13 13 169 clb auto 0.16 758 0.56 0.00 1.70835 -203.113 -1.70835 1.70835 0.34 0.000976047 0.000854198 0.161957 0.13986 36 2211 20 6.63067e+06 4.41931e+06 367804. 2176.36 1.64 0.460495 0.409135 1762 13 705 924 61330 17686 2.27648 2.27648 -247.759 -2.27648 0 0 456028. 2698.39 0.11 0.06 0.0383482 0.0355571 0.00733 0.3528 0.09256 0.5546
+k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common 4.29 0.05 9292 3 0.30 -1 -1 36152 -1 -1 65 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 70896 99 130 363 493 1 251 295 12 12 144 clb auto 0.12 615 0.39 0.00 1.97933 -202.994 -1.97933 1.97933 0.29 0.000637589 0.000549661 0.107568 0.0916289 46 1389 13 5.66058e+06 4.05111e+06 378970. 2631.74 1.33 0.336025 0.295263 1274 8 580 750 63298 22590 2.47625 2.47625 -241.499 -2.47625 0 0 486261. 3376.82 0.12 0.05 0.0233275 0.0215625 0.009076 0.2039 0.07227 0.7239
+k6_frac_N10_mem32K_40nm.xml diffeq1.v common 10.76 0.04 9160 15 0.46 -1 -1 34596 -1 -1 36 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 70556 162 96 999 932 1 693 299 16 16 256 mult_36 auto 0.38 5304 0.90 0.01 19.7038 -1798.95 -19.7038 19.7038 0.61 0.00289557 0.00265919 0.431869 0.386185 50 11378 23 1.21132e+07 3.92018e+06 780512. 3048.87 4.63 0.961355 0.870492 9589 21 3086 6045 1539878 392193 22.8395 22.8395 -2030.13 -22.8395 0 0 1.00276e+06 3917.05 0.21 0.37 0.11341 0.106043 0.007811 0.3508 0.0162 0.633
+k6_frac_N10_mem32K_40nm.xml diffeq2.v common 12.30 0.03 8308 14 0.34 -1 -1 33544 -1 -1 29 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 70008 66 96 719 590 1 525 198 18 18 324 mult_36 auto 0.30 4790 0.42 0.00 15.3213 -871.24 -15.3213 15.3213 0.84 0.00141308 0.00131027 0.217961 0.199231 38 11506 50 1.57076e+07 4.33493e+06 803540. 2480.06 6.24 0.860594 0.793647 10051 18 2900 6407 2371930 564906 18.2473 18.2473 -1032.11 -18.2473 0 0 1.01953e+06 3146.70 0.29 0.65 0.158463 0.148985 0.009421 0.3037 0.01834 0.678
+k6_frac_N10_mem32K_40nm.xml mkPktMerge.v common 17.82 0.16 16964 2 0.11 -1 -1 33736 -1 -1 27 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 90796 311 156 972 1128 1 953 509 28 28 784 memory auto 0.53 7827 0.86 0.01 3.90797 -4026.08 -3.90797 3.90797 1.71 0.00249662 0.00213566 0.378096 0.317729 36 14479 14 4.25198e+07 9.67514e+06 1.94918e+06 2486.20 8.42 1.27326 1.11249 13472 13 2891 3230 2215365 647096 4.52093 4.52093 -4789.05 -4.52093 -25.8456 -0.339827 2.40571e+06 3068.51 0.83 0.47 0.107209 0.0976762 0.08502 0.1435 0.01666 0.8399
+k6_frac_N10_mem32K_40nm.xml mkSMAdapter4B.v common 25.22 0.36 31976 7 2.69 -1 -1 37956 -1 -1 165 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 86772 193 205 2232 2437 1 1190 568 20 20 400 memory auto 1.29 8936 1.62 0.01 4.44855 -2528.04 -4.44855 4.44855 0.75 0.00282609 0.00241744 0.586948 0.474437 48 17495 46 2.07112e+07 1.16325e+07 1.23055e+06 3076.38 11.51 1.93275 1.63513 14708 14 4521 11092 1106779 263595 5.53986 5.53986 -2984.41 -5.53986 -4.85712 -0.29436 1.57502e+06 3937.55 0.36 0.34 0.169369 0.155213 0.0293 0.2036 0.02481 0.7716
+k6_frac_N10_mem32K_40nm.xml or1200.v common 70.22 0.55 40832 27 5.31 -1 -1 43828 -1 -1 259 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 115772 385 394 3979 4310 1 2379 1041 27 27 729 io auto 3.47 31242 3.72 0.03 13.271 -13061.1 -13.271 13.271 1.72 0.00762478 0.00673748 1.16799 0.97424 76 51110 29 3.93038e+07 1.54505e+07 3.58343e+06 4915.54 41.99 4.90125 4.28119 46131 14 10355 37426 3388428 639602 15.072 15.072 -14934.3 -15.072 0 0 4.48127e+06 6147.14 1.07 1.00 0.404446 0.371647 0.02317 0.4367 0.02471 0.5386
+k6_frac_N10_mem32K_40nm.xml raygentop.v common 30.58 0.40 32972 8 1.99 -1 -1 40616 -1 -1 107 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 88680 214 305 2625 2741 1 1449 635 22 22 484 mult_36 auto 2.38 11585 1.53 0.01 4.30664 -2400.31 -4.30664 4.30664 1.48 0.00351355 0.00308259 0.591307 0.506205 50 26386 46 2.50602e+07 9.33066e+06 1.56759e+06 3238.82 12.63 1.97252 1.73499 21391 21 7225 15930 4958964 1086872 5.40231 5.40231 -3027.78 -5.40231 0 0 2.01671e+06 4166.75 0.49 1.08 0.293596 0.265513 0.02275 0.432 0.03813 0.5299
+k6_frac_N10_mem32K_40nm.xml sha.v common 615.49 1.15 38192 20 587.49 -1 -1 95400 -1 -1 208 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 98348 38 36 3404 3440 1 1281 282 19 19 361 clb auto 1.85 13341 1.68 0.01 11.5537 -3886.76 -11.5537 11.5537 0.65 0.00374746 0.00310762 0.71887 0.544538 56 21996 28 1.72706e+07 1.121e+07 1.27879e+06 3542.35 9.80 2.90409 2.37175 19799 15 5276 20061 681706 118206 14.2741 14.2741 -4632.48 -14.2741 0 0 1.63234e+06 4521.70 0.48 0.74 0.503724 0.445712 0.01026 0.3549 0.02594 0.6191
diff --git a/vtr_flow/tasks/power/power_sparse_crossbar_sweep/config/config.txt b/vtr_flow/tasks/power/power_sparse_crossbar_sweep/config/config.txt
index 9483cd8120b..56ca723a6d2 100644
--- a/vtr_flow/tasks/power/power_sparse_crossbar_sweep/config/config.txt
+++ b/vtr_flow/tasks/power/power_sparse_crossbar_sweep/config/config.txt
@@ -29,9 +29,12 @@ circuit_list_add=mkSMAdapter4B.v
circuit_list_add=or1200.v
circuit_list_add=raygentop.v
circuit_list_add=sha.v
-circuit_list_add=stereovision0.v
-circuit_list_add=stereovision1.v
-circuit_list_add=stereovision2.v
+#These circuits do not go through ACE2. It falsely thinks there are multiple clocks in the circuit. There is a bug with using module instantiation by port when two modules have different names for their clocks, in this case instantiation by name must be used. Tried altering the instantiation method & clock names but did not work. This fixed the error for raygentop.v
+
+#circuit_list_add=stereovision0.v
+#circuit_list_add=stereovision1.v
+#circuit_list_add=stereovision2.v
+
#circuit_list_add=stereovision3.v
# Add architectures to list to sweep
@@ -60,7 +63,9 @@ arch_list_add=k6_N10_I40_Fi6_L4_frac0_ff1_C45_45nm.xml
arch_list_add=k6_N10_I40_Fi6_L4_frac0_ff1_C50_45nm.xml
# Parse info and how to parse
-parse_file=vpr_power_detailed.txt
+#vpr_power_detailed.txt produces incompelete QoR results. (Issue #1749)
+#parse_file=vpr_power_detailed.txt
+parse_file=vpr_power.txt
# Pass requirements
-pass_requirements_file=pass_requirements.txt
+pass_requirements_file=pass_requirements_power.txt
diff --git a/vtr_flow/tasks/power/power_sparse_crossbar_sweep/config/golden_results.txt b/vtr_flow/tasks/power/power_sparse_crossbar_sweep/config/golden_results.txt
new file mode 100644
index 00000000000..e5f15020e79
--- /dev/null
+++ b/vtr_flow/tasks/power/power_sparse_crossbar_sweep/config/golden_results.txt
@@ -0,0 +1,331 @@
+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 total_power routing_power_perc clock_power_perc tile_power_perc
+k6_N10_I40_Fi6_L4_frac1_ff2_C5_45nm.xml bgm.v common 2573.82 22.75 392640 22 502.96 -1 -1 152568 -1 -1 2858 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 868484 257 32 32168 31683 1 24285 3158 65 65 4225 clb auto 515.38 282444 92.44 0.61 19.7912 -26517.5 -19.7912 19.7912 37.71 0.0666864 0.0573557 9.87265 7.38586 172 1029056 36 2.50934e+08 1.58386e+08 4.54631e+07 10760.5 1194.64 48.3091 38.0615 908674 15 95565 455534 256022540 51023360 23.6901 23.6901 -32127.2 -23.6901 0 0 5.76082e+07 13635.1 21.89 50.99 4.49249 3.7812 0.2129 0.7823 0.02247 0.1952
+k6_N10_I40_Fi6_L4_frac1_ff2_C5_45nm.xml blob_merge.v common 444.41 0.46 59416 18 78.76 -1 -1 67520 -1 -1 611 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 218680 36 100 6600 6700 1 4471 747 31 31 961 clb auto 74.28 53377 6.66 0.05 11.8407 -3349.19 -11.8407 11.8407 2.83 0.0109847 0.00933497 1.76476 1.34499 166 206947 21 5.14688e+07 3.29292e+07 9.55054e+06 9938.12 250.68 7.07731 5.69042 179520 11 13384 73496 40471721 8111907 15.7863 15.7863 -3999.38 -15.7863 0 0 1.21559e+07 12649.3 3.13 7.40 0.664959 0.584195 0.03277 0.7134 0.0398 0.2468
+k6_N10_I40_Fi6_L4_frac1_ff2_C5_45nm.xml boundtop.v common 10.91 0.80 47084 2 0.56 -1 -1 37044 -1 -1 84 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 66520 114 192 455 647 1 328 390 13 13 169 clb auto 0.28 885 0.59 0.00 1.91071 -241.984 -1.91071 1.91071 0.38 0.000964558 0.000840586 0.160849 0.139969 46 4441 23 6.63067e+06 4.5271e+06 456028. 2698.39 5.19 0.460368 0.409478 3572 13 933 1554 479117 156131 2.74946 2.74946 -339.066 -2.74946 0 0 585697. 3465.66 0.13 0.09 0.0224553 0.020618 0.007847 0.5484 0.08096 0.3707
+k6_N10_I40_Fi6_L4_frac1_ff2_C5_45nm.xml ch_intrinsics.v common 5.76 0.06 9316 3 0.28 -1 -1 36092 -1 -1 68 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 68112 99 130 363 493 1 282 298 12 12 144 clb auto 0.29 782 0.27 0.00 2.41061 -241.672 -2.41061 2.41061 0.20 0.000424858 0.000370585 0.0719423 0.061991 48 3573 14 5.66058e+06 4.21279e+06 394078. 2736.65 3.01 0.265983 0.23414 3133 10 670 1234 433172 125537 3.3945 3.3945 -355.616 -3.3945 0 0 503207. 3494.49 0.11 0.12 0.0260234 0.023868 0.007808 0.3583 0.06249 0.5792
+k6_N10_I40_Fi6_L4_frac1_ff2_C5_45nm.xml diffeq1.v common 42.12 0.04 9148 15 0.45 -1 -1 34592 -1 -1 42 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 78528 162 96 999 932 1 779 305 16 16 256 mult_36 auto 10.14 5788 0.60 0.01 22.1198 -2072.15 -22.1198 22.1198 0.45 0.00159474 0.00145504 0.230383 0.206923 96 26278 47 1.21132e+07 4.24355e+06 1.42133e+06 5552.06 26.21 0.872958 0.795792 20003 13 3299 9223 6435532 1397832 26.8121 26.8121 -2708.49 -26.8121 0 0 1.77927e+06 6950.29 0.30 0.91 0.0694607 0.06515 0.00867 0.5804 0.01921 0.4004
+k6_N10_I40_Fi6_L4_frac1_ff2_C5_45nm.xml diffeq2.v common 33.31 0.04 8276 14 0.23 -1 -1 33540 -1 -1 31 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 70596 66 96 719 590 1 593 200 18 18 324 mult_36 auto 5.53 5438 0.48 0.00 17.3356 -1095.76 -17.3356 17.3356 0.63 0.0014477 0.00133761 0.22848 0.2075 64 23677 48 1.57076e+07 4.44271e+06 1.31112e+06 4046.65 21.88 0.922042 0.848466 18340 19 3302 10092 8273527 2115474 22.7429 22.7429 -1400.32 -22.7429 0 0 1.63904e+06 5058.76 0.29 1.28 0.0781144 0.0734342 0.008913 0.4773 0.02057 0.5021
+k6_N10_I40_Fi6_L4_frac1_ff2_C5_45nm.xml LU8PEEng.v common 2788.05 21.31 227584 129 269.66 -1 -1 100640 -1 -1 2149 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 711076 114 102 29578 29304 1 21827 2417 56 56 3136 clb auto 665.48 250932 74.56 0.97 89.3967 -59529.8 -89.3967 89.3967 27.62 0.156337 0.115218 10.5714 7.89437 202 812931 42 1.8697e+08 1.43101e+08 3.85388e+07 12289.2 1549.48 50.3584 39.435 711041 18 63129 261741 209011861 47512510 109.391 109.391 -78103.7 -109.391 -36.6632 -0.292146 4.91668e+07 15678.2 16.79 52.20 4.13038 3.40838 0.1208 0.7681 0.009672 0.2222
+k6_N10_I40_Fi6_L4_frac1_ff2_C5_45nm.xml LU32PEEng.v common 29988.63 168.54 770608 128 1466.21 -1 -1 298508 -1 -1 7692 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2517544 114 102 102506 101104 1 76779 8107 104 104 10816 clb auto 2830.49 1197759 630.29 3.27 89.0703 -344061 -89.0703 89.0703 105.84 0.280792 0.2425 47.961 36.4997 242 3051368 24 6.67561e+08 5.18699e+08 1.60656e+08 14853.5 23995.77 185.134 145.253 2822580 15 192185 822519 1042860073 261615155 111.116 111.116 -503280 -111.116 -42.0844 -0.174787 2.04407e+08 18898.6 74.28 288.08 12.4528 10.5446 0.4794 0.7885 0.008819 0.2026
+k6_N10_I40_Fi6_L4_frac1_ff2_C5_45nm.xml mcml.v common 21579.60 63.22 954264 75 8830.61 -1 -1 447672 -1 -1 7627 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2336448 36 33 134466 132924 1 71078 7882 103 103 10609 clb auto 722.10 812079 429.48 2.45 72.672 -335986 -72.672 72.672 115.46 0.199278 0.169044 39.9493 31.1837 176 2106287 46 6.46441e+08 5.08833e+08 1.18648e+08 11183.7 10710.26 152.984 123.408 1902786 15 191739 810936 481601433 106967346 93.4536 93.4536 -520072 -93.4536 -0.225514 -0.0281893 1.49134e+08 14057.3 47.19 119.89 10.9575 9.47263 0.3573 0.7112 0.01093 0.2779
+k6_N10_I40_Fi6_L4_frac1_ff2_C5_45nm.xml mkDelayWorker32B.v common 101.77 1.20 78880 5 13.18 -1 -1 52412 -1 -1 462 506 47 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 324944 506 553 3285 3838 1 3129 1568 50 50 2500 memory auto 4.55 15224 6.40 0.04 7.36927 -1901.92 -7.36927 7.36927 24.49 0.0114414 0.0103734 3.24284 2.89552 38 27554 10 1.47946e+08 5.06557e+07 6.86584e+06 2746.33 31.21 7.80885 7.11625 26475 9 2914 3746 4387103 1075380 8.79228 8.79228 -2319.91 -8.79228 -3.50224 -0.295467 8.69095e+06 3476.38 3.91 1.16 0.409956 0.388722 0.1446 0.1613 0.03212 0.8066
+k6_N10_I40_Fi6_L4_frac1_ff2_C5_45nm.xml mkPktMerge.v common 24.65 0.16 17096 2 0.12 -1 -1 33708 -1 -1 26 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 90908 311 156 972 1128 1 953 508 28 28 784 memory auto 0.55 8661 0.86 0.01 3.8873 -4499.63 -3.8873 3.8873 2.35 0.0025678 0.00214956 0.378396 0.312952 36 18042 21 4.25198e+07 9.62124e+06 1.94918e+06 2486.20 14.00 1.62721 1.42944 16200 11 2617 3342 4093936 1103986 4.50433 4.50433 -5230.63 -4.50433 -12.1576 -0.339827 2.40571e+06 3068.51 0.63 0.72 0.0915948 0.0833125 0.08472 0.1643 0.01678 0.8189
+k6_N10_I40_Fi6_L4_frac1_ff2_C5_45nm.xml mkSMAdapter4B.v common 132.63 0.36 32016 7 3.53 -1 -1 37892 -1 -1 171 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 90596 193 205 2232 2437 1 1471 574 20 20 400 memory auto 18.11 10355 2.23 0.02 5.9827 -3155.25 -5.9827 5.9827 1.35 0.00316876 0.00248193 0.718303 0.585054 102 47353 43 2.07112e+07 1.19559e+07 2.42570e+06 6064.25 98.05 2.42994 2.06748 38142 13 5774 19769 10615536 2310617 6.94396 6.94396 -3942.76 -6.94396 -11.4044 -0.341744 3.04686e+06 7617.14 0.69 1.77 0.167904 0.15321 0.02843 0.3714 0.0316 0.597
+k6_N10_I40_Fi6_L4_frac1_ff2_C5_45nm.xml or1200.v common 361.19 0.47 40908 27 5.52 -1 -1 43648 -1 -1 267 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 157012 385 394 3979 4310 1 2775 1049 27 27 729 io auto 33.54 34620 4.17 0.04 17.098 -14258.2 -17.098 17.098 2.02 0.00763255 0.0068067 1.13398 0.944017 142 125951 44 3.93038e+07 1.58817e+07 6.23364e+06 8550.94 292.04 4.81677 4.15395 100530 12 10792 47941 30566078 6055098 22.1934 22.1934 -17449.9 -22.1934 0 0 7.90541e+06 10844.2 2.18 8.08 0.659035 0.59197 0.0248 0.7119 0.02602 0.262
+k6_N10_I40_Fi6_L4_frac1_ff2_C5_45nm.xml raygentop.v common 159.16 0.41 33108 8 1.44 -1 -1 40472 -1 -1 123 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 95960 214 305 2625 2741 1 1680 651 22 22 484 mult_36 auto 37.45 13614 1.62 0.02 5.22018 -2766.59 -5.22018 5.22018 1.29 0.00338877 0.0029499 0.47678 0.409723 102 53489 43 2.50602e+07 1.0193e+07 2.99432e+06 6186.61 104.69 2.18231 1.93586 43264 11 6206 19887 12000419 2521942 6.97827 6.97827 -3680.97 -6.97827 0 0 3.75889e+06 7766.30 1.26 2.96 0.270362 0.249094 0.02599 0.6633 0.04074 0.296
+k6_N10_I40_Fi6_L4_frac1_ff2_C5_45nm.xml sha.v common 823.36 1.13 38336 20 611.78 -1 -1 95360 -1 -1 250 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 114836 38 36 3404 3440 1 1848 324 21 21 441 clb auto 56.39 19001 1.90 0.01 14.9051 -5091.22 -14.9051 14.9051 0.95 0.00376939 0.00318239 0.601429 0.443725 150 83864 33 2.24358e+07 1.34735e+07 3.81998e+06 8662.09 135.54 2.92917 2.3666 66392 14 6375 33289 15133542 3380559 18.5868 18.5868 -6271.62 -18.5868 0 0 4.85260e+06 11003.6 1.09 2.53 0.245409 0.214778 0.01587 0.7402 0.03157 0.2283
+k6_N10_I40_Fi6_L4_frac1_ff2_C10_45nm.xml bgm.v common 1848.21 23.53 392696 22 474.89 -1 -1 152548 -1 -1 2671 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 813440 257 32 32168 31683 1 20363 2971 62 62 3844 clb auto 154.43 256235 80.86 0.71 16.5389 -24568.3 -16.5389 16.5389 34.17 0.079901 0.0586944 9.44726 6.96281 166 927256 43 2.30929e+08 1.48309e+08 3.99667e+07 10397.2 870.03 39.8886 31.2329 820819 16 90784 452860 242863486 49860914 21.3181 21.3181 -30095.6 -21.3181 0 0 5.08892e+07 13238.6 14.75 45.63 4.17065 3.59832 0.209 0.747 0.02344 0.2296
+k6_N10_I40_Fi6_L4_frac1_ff2_C10_45nm.xml blob_merge.v common 541.80 0.52 59504 18 86.28 -1 -1 67500 -1 -1 566 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 205600 36 100 6600 6700 1 3316 702 30 30 900 clb auto 16.29 50352 5.97 0.04 10.2609 -3019.7 -10.2609 10.2609 2.47 0.0112777 0.00970455 1.84168 1.37569 154 189709 47 4.8774e+07 3.0504e+07 8.30986e+06 9233.18 397.18 7.7958 6.2363 161485 12 11788 71840 43017159 8354882 12.6074 12.6074 -3613.7 -12.6074 0 0 1.05245e+07 11693.9 2.58 10.75 1.15287 0.996533 0.03167 0.6617 0.04558 0.2928
+k6_N10_I40_Fi6_L4_frac1_ff2_C10_45nm.xml boundtop.v common 8.28 0.80 47148 2 0.53 -1 -1 37024 -1 -1 84 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 66788 114 192 455 647 1 310 390 13 13 169 clb auto 0.12 758 0.35 0.00 1.99248 -227.353 -1.99248 1.99248 0.25 0.000594446 0.00052876 0.0954677 0.0834717 42 4236 34 6.63067e+06 4.5271e+06 416667. 2465.49 3.73 0.355599 0.317237 3335 13 836 1357 424462 137578 2.35094 2.35094 -305.836 -2.35094 0 0 523490. 3097.57 0.09 0.09 0.0232111 0.0213456 0.008682 0.5221 0.08163 0.3963
+k6_N10_I40_Fi6_L4_frac1_ff2_C10_45nm.xml ch_intrinsics.v common 4.04 0.05 9376 3 0.20 -1 -1 36128 -1 -1 68 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 68348 99 130 363 493 1 261 298 12 12 144 clb auto 0.17 705 0.26 0.00 2.24674 -234.586 -2.24674 2.24674 0.23 0.000480229 0.000422918 0.0690007 0.0594869 46 3052 17 5.66058e+06 4.21279e+06 378970. 2631.74 1.55 0.239519 0.210982 2717 9 539 883 308116 93203 3.1862 3.1862 -320.02 -3.1862 0 0 486261. 3376.82 0.08 0.06 0.0134051 0.0123055 0.008169 0.341 0.0626 0.5964
+k6_N10_I40_Fi6_L4_frac1_ff2_C10_45nm.xml diffeq1.v common 31.45 0.04 9240 15 0.30 -1 -1 34528 -1 -1 41 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 69824 162 96 999 932 1 722 304 16 16 256 mult_36 auto 2.32 5506 0.50 0.01 21.5482 -2051.31 -21.5482 21.5482 0.46 0.00166137 0.00151646 0.196646 0.176583 80 22551 30 1.21132e+07 4.18965e+06 1.20332e+06 4700.46 23.81 0.832965 0.757946 17881 16 3286 8359 5466266 1222723 26.0387 26.0387 -2715.74 -26.0387 0 0 1.51905e+06 5933.80 0.25 0.82 0.0790076 0.0738573 0.008289 0.5348 0.01767 0.4475
+k6_N10_I40_Fi6_L4_frac1_ff2_C10_45nm.xml diffeq2.v common 35.62 0.03 8320 14 0.22 -1 -1 33516 -1 -1 29 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 70376 66 96 719 590 1 550 198 18 18 324 mult_36 auto 0.61 5081 0.42 0.00 17.1439 -1004.08 -17.1439 17.1439 0.62 0.00143421 0.00132966 0.201194 0.183653 54 20898 46 1.57076e+07 4.33493e+06 1.09181e+06 3369.80 29.34 0.832232 0.766554 16591 17 3282 9217 6363263 1482495 22.0828 22.0828 -1288.23 -22.0828 0 0 1.41848e+06 4378.04 0.37 1.33 0.101843 0.0951773 0.00872 0.4345 0.01979 0.5457
+k6_N10_I40_Fi6_L4_frac1_ff2_C10_45nm.xml LU8PEEng.v common 1728.55 21.39 227744 129 260.58 -1 -1 100856 -1 -1 2009 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 654228 114 102 29578 29304 1 17741 2277 54 54 2916 clb auto 183.15 238258 53.84 0.35 85.7038 -55883.5 -85.7038 85.7038 23.36 0.0588912 0.0505543 8.82522 6.61239 190 732726 37 1.70873e+08 1.35557e+08 3.39445e+07 11640.8 1026.41 42.1056 32.8763 630320 16 51083 221674 166167080 35545365 105.494 105.494 -71519.5 -105.494 -23.031 -0.17368 4.34601e+07 14904.0 14.56 40.90 4.64228 3.86624 0.1134 0.7229 0.00968 0.2674
+k6_N10_I40_Fi6_L4_frac1_ff2_C10_45nm.xml LU32PEEng.v common 27468.73 168.99 770680 128 1446.39 -1 -1 298580 -1 -1 7143 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2345556 114 102 102506 101104 1 61756 7558 100 100 10000 clb auto 810.07 1125483 493.15 2.84 84.7149 -355720 -84.7149 84.7149 96.72 0.299816 0.218469 40.7678 30.8574 232 2758010 27 6.13558e+08 4.89114e+08 1.42734e+08 14273.4 23637.67 169.508 132.473 2525936 14 162803 736544 976085543 248100107 103.126 103.126 -496366 -103.126 -22.5925 -0.174787 1.82326e+08 18232.6 78.18 332.14 13.0507 11.0253 0.4552 0.7484 0.00891 0.2427
+k6_N10_I40_Fi6_L4_frac1_ff2_C10_45nm.xml mcml.v common 19371.88 65.97 954288 75 8954.15 -1 -1 447768 -1 -1 7383 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2326388 36 33 134466 132924 1 52553 7638 102 102 10404 clb auto 225.47 698760 348.31 1.91 68.5474 -326700 -68.5474 68.5474 127.43 0.198175 0.169376 37.0973 28.7221 178 1663702 49 6.36957e+08 4.95685e+08 1.17270e+08 11271.6 8928.45 146.534 117.981 1506129 14 140461 599511 353591728 75634293 82.6396 82.6396 -483608 -82.6396 -1.6061 -0.171467 1.48799e+08 14302.1 69.04 86.39 10.1865 8.80588 0.365 0.6747 0.01173 0.3135
+k6_N10_I40_Fi6_L4_frac1_ff2_C10_45nm.xml mkDelayWorker32B.v common 83.99 1.14 78936 5 8.49 -1 -1 52364 -1 -1 456 506 47 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 325020 506 553 3285 3838 1 3026 1562 50 50 2500 memory auto 2.91 15639 5.02 0.04 6.83616 -1950.9 -6.83616 6.83616 20.26 0.0114529 0.0103702 2.53804 2.27287 38 27445 25 1.47946e+08 5.03323e+07 6.86584e+06 2746.33 27.71 6.34734 5.80684 26464 9 2856 3690 5075742 1260995 8.03973 8.03973 -2311.1 -8.03973 -3.06139 -0.295467 8.69095e+06 3476.38 2.56 1.08 0.365263 0.345678 0.1582 0.1561 0.03297 0.8109
+k6_N10_I40_Fi6_L4_frac1_ff2_C10_45nm.xml mkPktMerge.v common 20.52 0.16 17160 2 0.10 -1 -1 33620 -1 -1 26 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 91044 311 156 972 1128 1 954 508 28 28 784 memory auto 0.82 8224 0.86 0.01 3.84107 -4621.75 -3.84107 3.84107 2.30 0.00282379 0.00218451 0.382612 0.323119 36 16703 15 4.25198e+07 9.62124e+06 1.94918e+06 2486.20 10.26 1.30297 1.14067 15458 10 2621 3153 2989273 818472 4.35551 4.35551 -5256.14 -4.35551 -12.3757 -0.341744 2.40571e+06 3068.51 0.59 0.54 0.088545 0.0809848 0.08744 0.1587 0.0168 0.8245
+k6_N10_I40_Fi6_L4_frac1_ff2_C10_45nm.xml mkSMAdapter4B.v common 71.22 0.26 32044 7 2.92 -1 -1 37800 -1 -1 171 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 85412 193 205 2232 2437 1 1291 574 20 20 400 memory auto 3.23 9620 2.70 0.03 5.32041 -2979.37 -5.32041 5.32041 0.93 0.00747021 0.00655756 1.13439 0.932329 98 41737 40 2.07112e+07 1.19559e+07 2.34690e+06 5867.25 52.65 2.57023 2.17144 30690 13 4590 14504 7209367 1609061 7.10068 7.10068 -3722.93 -7.10068 -15.6014 -0.360359 2.97986e+06 7449.64 0.80 1.58 0.241777 0.218637 0.02735 0.35 0.03167 0.6184
+k6_N10_I40_Fi6_L4_frac1_ff2_C10_45nm.xml or1200.v common 347.71 0.60 41044 27 5.15 -1 -1 43880 -1 -1 253 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 151556 385 394 3979 4310 1 2456 1035 27 27 729 io auto 8.39 32423 3.96 0.04 16.0818 -13270.8 -16.0818 16.0818 2.01 0.00880527 0.00695553 1.19758 0.966839 130 112802 49 3.93038e+07 1.51272e+07 5.74550e+06 7881.34 305.34 5.38695 4.67031 89632 12 9854 42678 27499595 5381855 19.475 19.475 -15820.6 -19.475 0 0 7.28925e+06 9998.97 2.44 8.30 0.694821 0.619535 0.02502 0.6672 0.02737 0.3054
+k6_N10_I40_Fi6_L4_frac1_ff2_C10_45nm.xml raygentop.v common 118.92 0.32 33040 8 1.42 -1 -1 40528 -1 -1 121 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 86196 214 305 2625 2741 1 1568 649 22 22 484 mult_36 auto 13.55 13274 1.77 0.03 4.94037 -2675.32 -4.94037 4.94037 1.13 0.0112857 0.0100299 0.644753 0.557552 90 51157 32 2.50602e+07 1.00852e+07 2.69149e+06 5560.93 91.21 2.27878 2.01224 40773 11 6073 17914 11975134 2498068 6.83898 6.83898 -3591.72 -6.83898 0 0 3.36730e+06 6957.24 0.76 2.10 0.164977 0.152676 0.02565 0.6391 0.03868 0.3222
+k6_N10_I40_Fi6_L4_frac1_ff2_C10_45nm.xml sha.v common 744.21 1.14 38392 20 623.20 -1 -1 95312 -1 -1 234 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 106940 38 36 3404 3440 1 1330 308 20 20 400 clb auto 6.21 15042 1.58 0.01 14.8876 -4805.31 -14.8876 14.8876 0.89 0.00372833 0.00313396 0.568142 0.421632 130 67212 49 2.07112e+07 1.26112e+07 3.01179e+06 7529.48 94.68 3.62679 2.991 55227 13 5151 27796 12285661 2785676 17.2488 17.2488 -6187.23 -17.2488 0 0 3.82330e+06 9558.24 1.04 2.12 0.253088 0.225233 0.01389 0.6863 0.03326 0.2805
+k6_N10_I40_Fi6_L4_frac1_ff2_C15_45nm.xml bgm.v common 1758.09 23.33 392832 22 493.87 -1 -1 152656 -1 -1 2572 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 771460 257 32 32168 31683 1 19656 2872 61 61 3721 clb auto 62.12 251670 84.32 0.55 17.0823 -24051.3 -17.0823 17.0823 33.48 0.0785134 0.0568194 10.7992 8.00254 166 880291 26 2.18169e+08 1.42974e+08 3.84715e+07 10339.0 860.07 45.7287 35.9126 788405 16 87756 437450 235404488 48237788 20.8221 20.8221 -28806.5 -20.8221 0 0 4.89899e+07 13165.8 17.25 43.93 4.25875 3.61215 0.2106 0.723 0.02287 0.2541
+k6_N10_I40_Fi6_L4_frac1_ff2_C15_45nm.xml blob_merge.v common 491.20 0.46 59588 18 78.19 -1 -1 67812 -1 -1 548 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 202112 36 100 6600 6700 1 3073 684 30 30 900 clb auto 4.99 50505 5.65 0.04 9.99465 -2939.2 -9.99465 9.99465 2.43 0.010797 0.00910577 1.79826 1.3152 152 181554 27 4.8774e+07 2.95339e+07 8.23376e+06 9148.62 367.22 7.26347 5.83128 154034 10 10646 66563 38819496 7581316 13.6639 13.6639 -3489.69 -13.6639 0 0 1.04238e+07 11582.0 3.48 7.86 0.661938 0.578553 0.03137 0.6458 0.04256 0.3117
+k6_N10_I40_Fi6_L4_frac1_ff2_C15_45nm.xml boundtop.v common 9.18 0.65 47224 2 0.60 -1 -1 36984 -1 -1 84 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 69064 114 192 455 647 1 311 390 13 13 169 clb auto 0.15 800 0.57 0.00 2.17391 -251.068 -2.17391 2.17391 0.39 0.000947714 0.00083773 0.156643 0.135975 40 3996 50 6.63067e+06 4.5271e+06 401688. 2376.85 3.51 0.492924 0.438933 3288 12 786 1054 294333 94628 2.54547 2.54547 -308.117 -2.54547 0 0 505045. 2988.43 0.13 0.11 0.0356699 0.0328025 0.00838 0.5256 0.07646 0.3979
+k6_N10_I40_Fi6_L4_frac1_ff2_C15_45nm.xml ch_intrinsics.v common 4.44 0.06 9448 3 0.30 -1 -1 36068 -1 -1 68 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 70596 99 130 363 493 1 263 298 12 12 144 clb auto 0.09 679 0.26 0.00 2.52326 -243.92 -2.52326 2.52326 0.22 0.000431777 0.000376166 0.0713013 0.0615399 42 3083 25 5.66058e+06 4.21279e+06 345702. 2400.71 1.78 0.24015 0.211325 2589 10 555 837 303846 96221 3.28011 3.28011 -322.947 -3.28011 0 0 434679. 3018.61 0.10 0.09 0.0233738 0.0214025 0.007794 0.3198 0.06094 0.6192
+k6_N10_I40_Fi6_L4_frac1_ff2_C15_45nm.xml diffeq1.v common 30.31 0.04 9428 15 0.32 -1 -1 34548 -1 -1 39 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 75672 162 96 999 932 1 709 302 16 16 256 mult_36 auto 0.89 5513 1.10 0.01 21.6326 -1891.35 -21.6326 21.6326 0.76 0.00175478 0.00158841 0.557048 0.498538 72 22412 33 1.21132e+07 4.08187e+06 1.11200e+06 4343.75 22.85 1.38417 1.2549 17602 18 3348 8388 5890197 1319139 25.3762 25.3762 -2267.46 -25.3762 0 0 1.39447e+06 5447.15 0.24 0.88 0.0888495 0.0831294 0.008286 0.507 0.01731 0.4757
+k6_N10_I40_Fi6_L4_frac1_ff2_C15_45nm.xml diffeq2.v common 37.18 0.03 8452 14 0.33 -1 -1 33508 -1 -1 26 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 69580 66 96 719 590 1 540 195 18 18 324 mult_36 auto 0.47 4967 0.45 0.00 16.0625 -981.251 -16.0625 16.0625 1.05 0.00150868 0.00138992 0.228235 0.207115 62 18594 43 1.57076e+07 4.17324e+06 1.26510e+06 3904.63 30.69 0.788853 0.723892 14665 21 3160 8259 4971346 1127388 20.6061 20.6061 -1225.02 -20.6061 0 0 1.57178e+06 4851.18 0.29 0.73 0.0836806 0.0783063 0.009376 0.4253 0.02021 0.5545
+k6_N10_I40_Fi6_L4_frac1_ff2_C15_45nm.xml LU8PEEng.v common 1925.93 21.61 227792 129 256.10 -1 -1 100832 -1 -1 1963 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 667884 114 102 29578 29304 1 17001 2231 54 54 2916 clb auto 61.31 235857 62.01 0.58 81.1561 -60166 -81.1561 81.1561 26.95 0.125535 0.095035 11.2079 8.27358 192 698378 41 1.70873e+08 1.33078e+08 3.42896e+07 11759.1 1304.05 43.507 33.8039 610984 17 53098 223468 168247692 35771678 100.857 100.857 -74271.8 -100.857 -15.3211 -0.174787 4.37685e+07 15009.8 20.89 45.49 4.07854 3.37094 0.1177 0.6993 0.009704 0.291
+k6_N10_I40_Fi6_L4_frac1_ff2_C15_45nm.xml LU32PEEng.v common 17881.58 177.77 770680 128 1445.73 -1 -1 298380 -1 -1 6949 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2255480 114 102 102506 101104 1 59298 7364 99 99 9801 clb auto 224.38 1091881 496.15 2.67 81.5591 -331476 -81.5591 81.5591 99.58 0.275068 0.227856 43.196 32.778 228 2680907 18 6.00857e+08 4.7866e+08 1.37787e+08 14058.4 14693.40 163.178 127.57 2429754 15 158685 714699 751695855 180050875 102.554 102.554 -488949 -102.554 -45.5695 -0.201639 1.76258e+08 17983.7 83.62 239.05 14.7226 12.286 0.4557 0.722 0.008682 0.2693
+k6_N10_I40_Fi6_L4_frac1_ff2_C15_45nm.xml mcml.v common 19051.80 65.50 954416 75 8958.19 -1 -1 447700 -1 -1 7300 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2220364 36 33 134466 132924 1 44373 7555 101 101 10201 clb auto 81.85 641906 329.16 3.27 63.9812 -340645 -63.9812 63.9812 98.90 0.473535 0.3923 36.6441 28.3518 166 1529302 40 6.22828e+08 4.91212e+08 1.07411e+08 10529.5 8871.46 138.243 110.345 1381949 16 135909 596597 349376977 77673307 78.1499 78.1499 -506856 -78.1499 -2.5042 -0.171467 1.36920e+08 13422.2 42.41 86.29 10.914 9.35135 0.3607 0.6344 0.01177 0.3539
+k6_N10_I40_Fi6_L4_frac1_ff2_C15_45nm.xml mkDelayWorker32B.v common 84.93 1.23 79048 5 7.59 -1 -1 52372 -1 -1 456 506 47 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 327560 506 553 3285 3838 1 3023 1562 50 50 2500 memory auto 4.12 14909 5.11 0.04 6.82621 -1908.66 -6.82621 6.82621 20.30 0.0119541 0.0108725 2.56679 2.29699 38 26561 26 1.47946e+08 5.03323e+07 6.86584e+06 2746.33 27.34 6.69165 6.12212 25364 7 2710 3781 4220624 1123985 8.44383 8.44383 -2315.98 -8.44383 -8.00661 -0.218188 8.69095e+06 3476.38 3.16 0.93 0.320539 0.303871 0.1521 0.1523 0.03333 0.8144
+k6_N10_I40_Fi6_L4_frac1_ff2_C15_45nm.xml mkPktMerge.v common 26.77 0.15 17200 2 0.12 -1 -1 33664 -1 -1 26 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 90468 311 156 972 1128 1 953 508 28 28 784 memory auto 0.50 8430 1.57 0.02 3.83222 -4346.63 -3.83222 3.83222 2.97 0.004957 0.00437756 0.795331 0.689503 38 16731 21 4.25198e+07 9.62124e+06 2.03942e+06 2601.30 14.95 2.20497 1.95456 15360 10 2420 2850 4148644 1153346 4.39536 4.39536 -5200.18 -4.39536 -18.8768 -0.321515 2.58559e+06 3297.95 0.61 0.76 0.0864114 0.0790466 0.08778 0.1644 0.01693 0.8187
+k6_N10_I40_Fi6_L4_frac1_ff2_C15_45nm.xml mkSMAdapter4B.v common 112.68 0.31 32108 7 2.74 -1 -1 37864 -1 -1 167 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 85364 193 205 2232 2437 1 1236 570 20 20 400 memory auto 1.26 9832 2.39 0.02 4.94861 -2957.36 -4.94861 4.94861 1.09 0.00444223 0.00372498 0.885741 0.722635 86 40952 50 2.07112e+07 1.17403e+07 2.09354e+06 5233.84 96.09 2.40488 2.01947 32093 14 5291 16198 10125424 2135210 6.29995 6.29995 -3661.05 -6.29995 -13.101 -0.339827 2.64871e+06 6621.77 0.62 1.66 0.16419 0.150133 0.03018 0.3339 0.02966 0.6364
+k6_N10_I40_Fi6_L4_frac1_ff2_C15_45nm.xml or1200.v common 311.36 0.54 41064 27 4.99 -1 -1 43888 -1 -1 242 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 151192 385 394 3979 4310 1 2411 1024 27 27 729 io auto 4.38 32508 3.90 0.04 14.4606 -12483.1 -14.4606 14.4606 2.57 0.0074227 0.0066442 1.1912 0.994087 132 107052 32 3.93038e+07 1.45343e+07 5.81219e+06 7972.82 272.70 5.15045 4.4896 86578 12 9739 40494 26638184 5206922 17.176 17.176 -14669.3 -17.176 0 0 7.45027e+06 10219.9 2.32 5.98 0.463634 0.419907 0.02698 0.6436 0.02882 0.3276
+k6_N10_I40_Fi6_L4_frac1_ff2_C15_45nm.xml raygentop.v common 113.79 0.31 33208 8 1.82 -1 -1 40480 -1 -1 119 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 87004 214 305 2625 2741 1 1507 647 22 22 484 mult_36 auto 4.50 12781 1.64 0.01 4.46099 -2581.17 -4.46099 4.46099 1.47 0.00363375 0.00317676 0.56816 0.48284 84 48860 46 2.50602e+07 9.97739e+06 2.52002e+06 5206.66 92.47 3.13596 2.76728 38549 12 6375 18050 12622910 2612521 5.63892 5.63892 -3643.7 -5.63892 0 0 3.20788e+06 6627.84 1.08 2.49 0.196961 0.182439 0.02888 0.6096 0.04041 0.35
+k6_N10_I40_Fi6_L4_frac1_ff2_C15_45nm.xml sha.v common 705.81 1.15 38332 20 596.25 -1 -1 95396 -1 -1 233 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 106428 38 36 3404 3440 1 1329 307 20 20 400 clb auto 2.15 15426 2.14 0.02 13.5263 -4588.88 -13.5263 13.5263 1.13 0.0078038 0.00712248 0.847349 0.647318 128 65439 50 2.07112e+07 1.25573e+07 2.97986e+06 7449.64 86.95 3.16386 2.5855 53969 12 5049 26839 12654320 2846499 17.8129 17.8129 -5605.13 -17.8129 0 0 3.77264e+06 9431.61 0.83 2.10 0.218484 0.195708 0.01399 0.6648 0.03186 0.3033
+k6_N10_I40_Fi6_L4_frac1_ff2_C20_45nm.xml bgm.v common 1702.40 23.18 392940 22 464.16 -1 -1 152584 -1 -1 2590 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 773792 257 32 32168 31683 1 19316 2890 61 61 3721 clb auto 75.75 252933 84.81 1.12 19.7985 -24314.4 -19.7985 19.7985 32.16 0.13375 0.108363 10.9763 8.26849 164 867045 27 2.18169e+08 1.43944e+08 3.79506e+07 10199.0 828.68 48.0781 37.7799 779804 14 70164 346999 203678029 41328457 22.956 22.956 -28818.9 -22.956 0 0 4.85518e+07 13048.1 18.54 39.05 3.682 3.1441 0.205 0.7005 0.02168 0.2778
+k6_N10_I40_Fi6_L4_frac1_ff2_C20_45nm.xml blob_merge.v common 426.85 0.64 59580 18 84.59 -1 -1 67528 -1 -1 556 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 199036 36 100 6600 6700 1 2981 692 30 30 900 clb auto 5.98 47797 11.12 0.07 9.84814 -2888.66 -9.84814 9.84814 4.23 0.027626 0.0229406 4.2514 3.30397 144 175620 25 4.8774e+07 2.99651e+07 7.84786e+06 8719.85 283.90 9.60963 7.70112 152216 11 10781 66741 40931883 7921143 13.033 13.033 -3463.92 -13.033 0 0 9.97373e+06 11081.9 3.27 7.44 0.693099 0.607015 0.0316 0.62 0.04321 0.3368
+k6_N10_I40_Fi6_L4_frac1_ff2_C20_45nm.xml boundtop.v common 8.94 0.71 47204 2 0.61 -1 -1 37012 -1 -1 84 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 69096 114 192 455 647 1 317 390 13 13 169 clb auto 0.10 800 0.59 0.00 1.77227 -220.622 -1.77227 1.77227 0.41 0.00106112 0.00092823 0.181192 0.15703 44 3681 37 6.63067e+06 4.5271e+06 434699. 2572.18 3.75 0.492169 0.437141 3068 11 766 1084 302963 96789 2.24781 2.24781 -287.743 -2.24781 0 0 566916. 3354.53 0.09 0.06 0.0196259 0.0181216 0.00939 0.5094 0.08041 0.4101
+k6_N10_I40_Fi6_L4_frac1_ff2_C20_45nm.xml ch_intrinsics.v common 5.80 0.06 9584 3 0.29 -1 -1 36120 -1 -1 68 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 65544 99 130 363 493 1 259 298 12 12 144 clb auto 0.09 652 0.40 0.01 2.45255 -238.469 -2.45255 2.45255 0.32 0.000702462 0.000609648 0.113524 0.0962138 44 2945 41 5.66058e+06 4.21279e+06 360780. 2505.42 2.97 0.422251 0.371893 2309 9 550 787 200630 70192 3.18556 3.18556 -311.511 -3.18556 0 0 470765. 3269.20 0.08 0.04 0.0131242 0.0120806 0.008058 0.3132 0.06182 0.625
+k6_N10_I40_Fi6_L4_frac1_ff2_C20_45nm.xml diffeq1.v common 36.37 0.04 9380 15 0.49 -1 -1 34528 -1 -1 39 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 69564 162 96 999 932 1 707 302 16 16 256 mult_36 auto 0.98 5437 0.52 0.01 21.3683 -1845.67 -21.3683 21.3683 0.46 0.00165536 0.00149078 0.206146 0.184641 82 21466 45 1.21132e+07 4.08187e+06 1.22684e+06 4792.35 29.00 0.941043 0.856568 16178 17 2996 7299 5103652 1222963 24.5526 24.5526 -2138.41 -24.5526 0 0 1.54493e+06 6034.88 0.38 1.29 0.169431 0.158075 0.008731 0.4998 0.01784 0.4824
+k6_N10_I40_Fi6_L4_frac1_ff2_C20_45nm.xml diffeq2.v common 29.13 0.04 8528 14 0.32 -1 -1 33592 -1 -1 28 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 69628 66 96 719 590 1 539 197 18 18 324 mult_36 auto 0.67 4765 0.57 0.01 16.3654 -979.882 -16.3654 16.3654 0.84 0.00243458 0.0022502 0.291909 0.264589 54 17316 28 1.57076e+07 4.28103e+06 1.09181e+06 3369.80 21.91 0.971145 0.893453 14679 16 2771 7061 4871352 1231611 21.4368 21.4368 -1248.54 -21.4368 0 0 1.41848e+06 4378.04 0.38 1.22 0.141256 0.133365 0.009087 0.4037 0.01951 0.5768
+k6_N10_I40_Fi6_L4_frac1_ff2_C20_45nm.xml LU8PEEng.v common 1306.55 20.05 227916 129 260.83 -1 -1 100876 -1 -1 1957 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 663820 114 102 29578 29304 1 16373 2225 54 54 2916 clb auto 93.92 237883 47.94 0.31 81.5793 -60675.3 -81.5793 81.5793 23.17 0.0570151 0.0484802 8.69989 6.56425 190 679241 26 1.70873e+08 1.32754e+08 3.39445e+07 11640.8 693.11 36.6618 28.4912 596141 14 46881 201285 147260391 31644691 101.557 101.557 -75385.2 -101.557 -28.5109 -0.199722 4.34601e+07 14904.0 15.34 38.12 3.52493 2.98447 0.1199 0.6768 0.009544 0.3137
+k6_N10_I40_Fi6_L4_frac1_ff2_C20_45nm.xml LU32PEEng.v common 16442.52 170.45 770832 128 1595.67 -1 -1 298540 -1 -1 6914 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2264736 114 102 102506 101104 1 57663 7329 99 99 9801 clb auto 322.80 1078833 505.56 2.65 80.9382 -353653 -80.9382 80.9382 95.12 0.255201 0.21456 44.65 34.1057 224 2641320 35 6.00857e+08 4.76774e+08 1.35899e+08 13865.8 12975.52 189.295 148.615 2396330 16 156772 701820 783369578 185537539 97.5145 97.5145 -508183 -97.5145 -48.1411 -0.17368 1.73865e+08 17739.5 74.82 230.18 13.9968 11.7438 0.4668 0.6975 0.008717 0.2937
+k6_N10_I40_Fi6_L4_frac1_ff2_C20_45nm.xml mcml.v common 17153.34 68.79 954552 75 9261.06 -1 -1 447796 -1 -1 7310 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2253308 36 33 134466 132924 1 47266 7565 101 101 10201 clb auto 113.88 603020 314.89 3.08 64.7306 -343701 -64.7306 64.7306 106.22 0.445101 0.370244 35.1678 27.1312 166 1466823 22 6.22828e+08 4.91751e+08 1.07411e+08 10529.5 6624.72 137.031 109.784 1340603 13 130791 502332 307552561 67854184 74.785 74.785 -523935 -74.785 0 0 1.36920e+08 13422.2 47.14 74.99 10.1291 8.80645 0.3668 0.6159 0.01209 0.372
+k6_N10_I40_Fi6_L4_frac1_ff2_C20_45nm.xml mkDelayWorker32B.v common 94.99 1.27 79116 5 11.67 -1 -1 52580 -1 -1 456 506 47 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 325636 506 553 3285 3838 1 3022 1562 50 50 2500 memory auto 4.45 14389 5.06 0.03 6.22659 -1782.64 -6.22659 6.22659 23.30 0.0114727 0.0103844 2.55332 2.28448 38 25918 13 1.47946e+08 5.03323e+07 6.86584e+06 2746.33 26.86 6.37566 5.82916 24840 13 2929 3787 4247493 1092105 7.68589 7.68589 -2268.82 -7.68589 -9.08627 -0.341744 8.69095e+06 3476.38 2.57 1.11 0.465433 0.437117 0.1665 0.1447 0.03418 0.8211
+k6_N10_I40_Fi6_L4_frac1_ff2_C20_45nm.xml mkPktMerge.v common 20.32 0.10 17300 2 0.12 -1 -1 33696 -1 -1 26 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 90304 311 156 972 1128 1 953 508 28 28 784 memory auto 0.48 7634 0.86 0.01 3.61069 -4564.75 -3.61069 3.61069 2.07 0.00249819 0.00213936 0.375906 0.315695 36 16720 19 4.25198e+07 9.62124e+06 1.94918e+06 2486.20 11.31 1.60939 1.41138 15130 16 3248 3704 3231191 891994 3.90904 3.90904 -5093.54 -3.90904 -13.9806 -0.339827 2.40571e+06 3068.51 0.59 0.60 0.11727 0.105878 0.09788 0.1562 0.01669 0.8271
+k6_N10_I40_Fi6_L4_frac1_ff2_C20_45nm.xml mkSMAdapter4B.v common 74.41 0.36 32236 7 3.56 -1 -1 37848 -1 -1 167 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 85296 193 205 2232 2437 1 1251 570 20 20 400 memory auto 1.23 9608 3.72 0.03 5.46792 -2933.92 -5.46792 5.46792 1.20 0.00907888 0.00811373 1.86763 1.53471 88 37529 30 2.07112e+07 1.17403e+07 2.14223e+06 5355.56 54.20 3.24504 2.71931 30525 13 4904 14219 8814336 1865690 6.58873 6.58873 -3700.3 -6.58873 -7.37186 -0.340786 2.68714e+06 6717.85 0.87 2.21 0.29984 0.274675 0.0293 0.3318 0.0295 0.6387
+k6_N10_I40_Fi6_L4_frac1_ff2_C20_45nm.xml or1200.v common 193.94 0.63 41124 27 4.83 -1 -1 43916 -1 -1 247 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 153448 385 394 3979 4310 1 2386 1029 27 27 729 io auto 4.02 31845 7.06 0.05 14.5842 -12656.3 -14.5842 14.5842 2.02 0.0127103 0.0114174 2.60816 2.1896 126 108816 39 3.93038e+07 1.48038e+07 5.60350e+06 7686.55 156.55 6.36819 5.52963 86754 14 9917 41034 27806618 5350495 16.6411 16.6411 -14719.8 -16.6411 0 0 7.09079e+06 9726.74 2.07 4.85 0.450083 0.414411 0.02736 0.62 0.0286 0.3514
+k6_N10_I40_Fi6_L4_frac1_ff2_C20_45nm.xml raygentop.v common 82.58 0.43 33360 8 1.42 -1 -1 40532 -1 -1 120 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 87188 214 305 2625 2741 1 1498 648 22 22 484 mult_36 auto 6.68 12840 1.85 0.02 5.14508 -2606.59 -5.14508 5.14508 1.13 0.00590213 0.00517767 0.644336 0.555186 88 43037 22 2.50602e+07 1.00313e+07 2.64363e+06 5462.06 60.48 2.06795 1.83423 36488 12 5474 14979 9204372 1952457 7.10957 7.10957 -3600.91 -7.10957 0 0 3.31599e+06 6851.22 0.78 1.54 0.157968 0.146825 0.02464 0.5996 0.03861 0.3618
+k6_N10_I40_Fi6_L4_frac1_ff2_C20_45nm.xml sha.v common 652.23 1.15 38328 20 566.21 -1 -1 95292 -1 -1 230 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 108176 38 36 3404 3440 1 1306 304 20 20 400 clb auto 1.81 14902 1.55 0.01 14.0863 -4523.86 -14.0863 14.0863 0.85 0.00465694 0.00328652 0.587227 0.420557 128 64045 35 2.07112e+07 1.23956e+07 2.97986e+06 7449.64 63.20 2.61461 2.11019 51764 13 4750 24598 11501933 2563285 17.8488 17.8488 -5589.15 -17.8488 0 0 3.77264e+06 9431.61 1.14 3.15 0.477891 0.426691 0.0142 0.6455 0.03134 0.3232
+k6_N10_I40_Fi6_L4_frac1_ff2_C25_45nm.xml bgm.v common 1662.95 24.33 392976 22 488.91 -1 -1 152616 -1 -1 2547 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 774708 257 32 32168 31683 1 19121 2847 61 61 3721 clb auto 44.63 251736 69.96 0.49 16.9699 -24210.6 -16.9699 16.9699 34.67 0.0656413 0.0559203 9.51066 7.05154 158 860811 49 2.18169e+08 1.41627e+08 3.66221e+07 9841.99 767.19 48.0995 38.0536 765996 14 80164 394085 225697520 45244159 20.5368 20.5368 -28506.4 -20.5368 0 0 4.67482e+07 12563.3 19.60 48.46 4.25539 3.66527 0.2171 0.6724 0.02241 0.3052
+k6_N10_I40_Fi6_L4_frac1_ff2_C25_45nm.xml blob_merge.v common 443.12 0.64 59712 18 88.28 -1 -1 67700 -1 -1 553 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 197028 36 100 6600 6700 1 2912 689 30 30 900 clb auto 4.89 48089 5.95 0.04 9.40333 -2850.04 -9.40333 9.40333 3.73 0.0106986 0.00904231 2.15473 1.58978 142 176680 34 4.8774e+07 2.98034e+07 7.73133e+06 8590.37 307.24 8.61837 6.9033 148012 11 10831 65256 39078759 7558783 11.0482 11.0482 -3308.08 -11.0482 0 0 9.80655e+06 10896.2 2.68 7.13 0.610102 0.530663 0.03364 0.5905 0.046 0.3635
+k6_N10_I40_Fi6_L4_frac1_ff2_C25_45nm.xml boundtop.v common 7.60 0.79 47412 2 0.39 -1 -1 37100 -1 -1 84 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 66584 114 192 455 647 1 309 390 13 13 169 clb auto 0.06 755 0.35 0.00 1.89503 -222.938 -1.89503 1.89503 0.25 0.000609877 0.000534873 0.0985352 0.086204 40 3476 24 6.63067e+06 4.5271e+06 401688. 2376.85 3.03 0.344143 0.307509 2812 12 781 1202 325157 103856 2.46711 2.46711 -293.394 -2.46711 0 0 505045. 2988.43 0.09 0.07 0.0214387 0.0197471 0.008298 0.4777 0.07963 0.4427
+k6_N10_I40_Fi6_L4_frac1_ff2_C25_45nm.xml ch_intrinsics.v common 4.92 0.06 9696 3 0.30 -1 -1 36200 -1 -1 68 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 67960 99 130 363 493 1 256 298 12 12 144 clb auto 0.09 678 0.38 0.00 2.32115 -229.462 -2.32115 2.32115 0.31 0.000631005 0.000549892 0.105405 0.0903403 46 2637 18 5.66058e+06 4.21279e+06 378970. 2631.74 2.03 0.393064 0.347932 2378 8 473 664 203389 67056 3.08641 3.08641 -289.881 -3.08641 0 0 486261. 3376.82 0.09 0.06 0.0178023 0.0163278 0.00852 0.3166 0.06193 0.6215
+k6_N10_I40_Fi6_L4_frac1_ff2_C25_45nm.xml diffeq1.v common 41.26 0.04 9508 15 0.44 -1 -1 34504 -1 -1 39 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 75828 162 96 999 932 1 699 302 16 16 256 mult_36 auto 0.26 5450 0.91 0.01 21.0683 -1930.86 -21.0683 21.0683 0.75 0.00291376 0.00266939 0.401222 0.360965 70 19639 37 1.21132e+07 4.08187e+06 1.08614e+06 4242.72 33.63 1.73825 1.59097 16032 18 3132 6957 4807247 1123509 25.6346 25.6346 -2308.81 -25.6346 0 0 1.36713e+06 5340.37 0.33 1.24 0.183446 0.170367 0.008372 0.4744 0.01666 0.5089
+k6_N10_I40_Fi6_L4_frac1_ff2_C25_45nm.xml diffeq2.v common 47.10 0.03 8688 14 0.34 -1 -1 33464 -1 -1 26 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 70416 66 96 719 590 1 526 195 18 18 324 mult_36 auto 0.23 4949 0.43 0.00 16.6831 -955.38 -16.6831 16.6831 1.00 0.00193189 0.00178993 0.215806 0.195905 58 18108 38 1.57076e+07 4.17324e+06 1.18155e+06 3646.76 39.47 1.5553 1.44625 14017 21 2934 7480 5628260 1537457 20.2631 20.2631 -1209.23 -20.2631 0 0 1.50617e+06 4648.66 0.47 1.58 0.158358 0.149925 0.009749 0.3977 0.0199 0.5824
+k6_N10_I40_Fi6_L4_frac1_ff2_C25_45nm.xml LU8PEEng.v common 2349.83 19.55 227908 129 342.45 -1 -1 100800 -1 -1 1949 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 664892 114 102 29578 29304 1 16273 2217 54 54 2916 clb auto 43.73 229356 58.57 0.57 79.9792 -59367.3 -79.9792 79.9792 28.00 0.105959 0.0891486 10.9461 8.08092 182 673382 50 1.70873e+08 1.32323e+08 3.27330e+07 11225.3 1684.92 47.1323 36.7439 583849 16 48325 202485 156467106 33554145 97.698 97.698 -73711.6 -97.698 -29.3373 -0.29436 4.13174e+07 14169.2 15.77 37.43 3.67352 3.05449 0.1204 0.6443 0.009617 0.3461
+k6_N10_I40_Fi6_L4_frac1_ff2_C25_45nm.xml LU32PEEng.v common 14782.26 173.16 770848 128 1617.40 -1 -1 298508 -1 -1 6848 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2224932 114 102 102506 101104 1 56695 7263 98 98 9604 clb auto 171.70 1077659 458.73 2.56 77.0714 -306639 -77.0714 77.0714 93.80 0.253923 0.21371 40.6344 30.5275 222 2582023 23 5.9175e+08 4.73218e+08 1.32000e+08 13744.3 11509.96 167.762 131.032 2359556 14 155516 689949 796919885 190769682 95.1139 95.1139 -450633 -95.1139 -43.8404 -0.178312 1.68184e+08 17511.9 77.52 246.10 16.3066 13.6497 0.4706 0.6723 0.008733 0.319
+k6_N10_I40_Fi6_L4_frac1_ff2_C25_45nm.xml mcml.v common 18258.03 66.73 954548 75 9299.37 -1 -1 447780 -1 -1 7262 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2189180 36 33 134466 132924 1 42931 7517 101 101 10201 clb auto 68.14 618332 317.73 1.75 62.1251 -323139 -62.1251 62.1251 102.42 0.205957 0.153883 37.7055 28.4962 174 1432553 35 6.22828e+08 4.89164e+08 1.12658e+08 11043.8 7722.76 131.343 104.071 1312433 14 117369 458445 331920588 70113327 74.5914 74.5914 -467952 -74.5914 -0.112757 -0.0281893 1.42089e+08 13929.0 45.73 79.52 9.62335 8.29919 0.3875 0.6032 0.01172 0.3851
+k6_N10_I40_Fi6_L4_frac1_ff2_C25_45nm.xml mkDelayWorker32B.v common 82.95 0.83 79140 5 7.41 -1 -1 52408 -1 -1 456 506 47 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 324604 506 553 3285 3838 1 3022 1562 50 50 2500 memory auto 3.81 13946 5.30 0.04 6.7085 -1810.48 -6.7085 6.7085 20.42 0.0115196 0.0104409 2.67676 2.40129 38 25732 11 1.47946e+08 5.03323e+07 6.86584e+06 2746.33 26.45 6.22639 5.69411 24769 10 2730 3449 3949512 951415 8.26028 8.26028 -2264.11 -8.26028 -4.96155 -0.293253 8.69095e+06 3476.38 2.65 0.96 0.3874 0.366442 0.1583 0.1458 0.03442 0.8198
+k6_N10_I40_Fi6_L4_frac1_ff2_C25_45nm.xml mkPktMerge.v common 24.55 0.12 17444 2 0.14 -1 -1 33624 -1 -1 26 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 91072 311 156 972 1128 1 953 508 28 28 784 memory auto 0.51 8672 1.08 0.01 3.56227 -4437.04 -3.56227 3.56227 2.90 0.00434492 0.00379547 0.497051 0.422895 40 17032 21 4.25198e+07 9.62124e+06 2.13295e+06 2720.61 13.21 1.57705 1.37733 15467 10 2642 3094 3672922 1029893 4.12763 4.12763 -5117.4 -4.12763 -16.4487 -0.298787 2.67004e+06 3405.67 1.01 1.10 0.179504 0.165301 0.09473 0.1659 0.01724 0.8168
+k6_N10_I40_Fi6_L4_frac1_ff2_C25_45nm.xml mkSMAdapter4B.v common 62.44 0.36 32396 7 2.94 -1 -1 37728 -1 -1 169 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 84932 193 205 2232 2437 1 1238 572 20 20 400 memory auto 1.16 9442 1.61 0.01 5.11743 -3019.65 -5.11743 5.11743 0.86 0.00293973 0.00239379 0.553536 0.446957 80 37638 49 2.07112e+07 1.18481e+07 1.95715e+06 4892.88 46.04 1.84985 1.55915 29112 11 4782 13432 7341253 1567147 6.43438 6.43438 -3617.78 -6.43438 -9.2286 -0.340786 2.46968e+06 6174.21 0.78 2.02 0.328305 0.299082 0.02943 0.311 0.02732 0.6617
+k6_N10_I40_Fi6_L4_frac1_ff2_C25_45nm.xml or1200.v common 378.16 0.44 41144 27 5.82 -1 -1 43912 -1 -1 248 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 122628 385 394 3979 4310 1 2385 1030 27 27 729 io auto 2.82 30660 3.83 0.03 14.1621 -13340.4 -14.1621 14.1621 2.30 0.00789126 0.00712645 1.20479 1.00161 124 106544 37 3.93038e+07 1.48577e+07 5.51931e+06 7571.08 342.62 5.01207 4.36828 84270 13 9822 39251 27523790 5237548 17.745 17.745 -16563.4 -17.745 0 0 7.00128e+06 9603.95 1.68 6.14 0.719036 0.642198 0.0271 0.6042 0.02721 0.3686
+k6_N10_I40_Fi6_L4_frac1_ff2_C25_45nm.xml raygentop.v common 98.03 0.37 33396 8 2.16 -1 -1 40540 -1 -1 121 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 85688 214 305 2625 2741 1 1467 649 22 22 484 mult_36 auto 2.81 12752 2.49 0.02 4.47695 -2606.67 -4.47695 4.47695 1.95 0.00726887 0.00646229 0.995148 0.859404 86 42407 33 2.50602e+07 1.00852e+07 2.58348e+06 5337.77 75.75 2.59942 2.28423 35752 13 5669 15046 10050536 2102342 5.88818 5.88818 -3460.5 -5.88818 0 0 3.26805e+06 6752.17 1.04 1.87 0.184484 0.170735 0.0283 0.5781 0.04002 0.3818
+k6_N10_I40_Fi6_L4_frac1_ff2_C25_45nm.xml sha.v common 656.07 1.03 38512 20 588.11 -1 -1 95368 -1 -1 229 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 108496 38 36 3404 3440 1 1288 303 20 20 400 clb auto 1.38 14780 1.50 0.01 13.4469 -4577.03 -13.4469 13.4469 0.91 0.00415812 0.00337389 0.580336 0.43752 128 57437 20 2.07112e+07 1.23417e+07 2.97986e+06 7449.64 45.14 2.34559 1.89714 49866 13 4679 23555 10976247 2435438 17.9062 17.9062 -5814.64 -17.9062 0 0 3.77264e+06 9431.61 1.20 1.87 0.238242 0.212818 0.01433 0.6212 0.03097 0.3478
+k6_N10_I40_Fi6_L4_frac1_ff2_C30_45nm.xml bgm.v common 1603.25 24.51 392952 22 505.19 -1 -1 152628 -1 -1 2545 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 774048 257 32 32168 31683 1 18949 2845 61 61 3721 clb auto 41.06 247557 68.19 0.47 16.4943 -23724.2 -16.4943 16.4943 31.61 0.0665872 0.0564444 9.2923 6.90188 158 833058 33 2.18169e+08 1.41519e+08 3.66221e+07 9841.99 734.16 45.7525 36.0872 751019 15 80463 393720 221078547 44398777 20.4387 20.4387 -28194.3 -20.4387 0 0 4.67482e+07 12563.3 20.23 49.21 4.76985 4.02001 0.2224 0.6523 0.02212 0.3255
+k6_N10_I40_Fi6_L4_frac1_ff2_C30_45nm.xml blob_merge.v common 477.53 0.56 59832 18 85.19 -1 -1 67524 -1 -1 549 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 199308 36 100 6600 6700 1 2874 685 30 30 900 clb auto 4.95 47454 5.74 0.04 9.27967 -2820.09 -9.27967 9.27967 2.69 0.0136202 0.00923821 2.01467 1.42604 140 178041 41 4.8774e+07 2.95878e+07 7.62094e+06 8467.71 346.87 7.70043 6.03628 145210 11 10287 62842 37533363 7323104 11.5995 11.5995 -3325.89 -11.5995 0 0 9.70551e+06 10783.9 2.57 7.28 0.666519 0.590713 0.0338 0.5759 0.0436 0.3805
+k6_N10_I40_Fi6_L4_frac1_ff2_C30_45nm.xml boundtop.v common 8.27 0.69 47360 2 0.54 -1 -1 37008 -1 -1 84 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 67060 114 192 455 647 1 309 390 13 13 169 clb auto 0.11 757 0.57 0.00 2.07588 -236.645 -2.07588 2.07588 0.44 0.000911815 0.000802872 0.155244 0.133789 38 3536 20 6.63067e+06 4.5271e+06 384612. 2275.81 3.04 0.521847 0.464686 2796 10 698 1020 240394 79853 2.62516 2.62516 -304.883 -2.62516 0 0 489150. 2894.38 0.12 0.09 0.0308451 0.0284487 0.007963 0.469 0.07552 0.4554
+k6_N10_I40_Fi6_L4_frac1_ff2_C30_45nm.xml ch_intrinsics.v common 5.00 0.06 9704 3 0.32 -1 -1 36112 -1 -1 68 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 67908 99 130 363 493 1 257 298 12 12 144 clb auto 0.07 628 0.40 0.00 2.64718 -256.777 -2.64718 2.64718 0.28 0.000666934 0.00058158 0.11625 0.0999433 44 2681 16 5.66058e+06 4.21279e+06 360780. 2505.42 2.14 0.446154 0.395129 2265 8 502 689 189631 64230 3.09046 3.09046 -296.594 -3.09046 0 0 470765. 3269.20 0.13 0.07 0.0218912 0.0200541 0.008485 0.3063 0.0605 0.6332
+k6_N10_I40_Fi6_L4_frac1_ff2_C30_45nm.xml diffeq1.v common 35.58 0.04 9612 15 0.42 -1 -1 34528 -1 -1 39 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 75908 162 96 999 932 1 700 302 16 16 256 mult_36 auto 0.31 5303 0.92 0.01 20.7502 -1877.95 -20.7502 20.7502 0.73 0.00354743 0.00326561 0.438277 0.392629 70 20655 43 1.21132e+07 4.08187e+06 1.08614e+06 4242.72 28.85 1.43596 1.30255 16499 18 3495 7843 5548462 1264968 24.7602 24.7602 -2242.05 -24.7602 0 0 1.36713e+06 5340.37 0.23 0.83 0.0854297 0.0795271 0.008767 0.4667 0.01641 0.5169
+k6_N10_I40_Fi6_L4_frac1_ff2_C30_45nm.xml diffeq2.v common 22.16 0.03 8652 14 0.31 -1 -1 33524 -1 -1 26 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 70228 66 96 719 590 1 525 195 18 18 324 mult_36 auto 0.22 4903 0.41 0.00 16.3208 -947.916 -16.3208 16.3208 0.63 0.00144248 0.0013272 0.205682 0.186916 50 16824 32 1.57076e+07 4.17324e+06 1.01953e+06 3146.70 16.06 0.949657 0.875782 14185 15 2668 6492 4495044 1020056 20.4935 20.4935 -1201.34 -20.4935 0 0 1.31112e+06 4046.65 0.37 1.09 0.137951 0.129394 0.00952 0.3717 0.018 0.6103
+k6_N10_I40_Fi6_L4_frac1_ff2_C30_45nm.xml LU8PEEng.v common 2534.06 21.63 228012 129 266.20 -1 -1 100876 -1 -1 1953 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 664160 114 102 29578 29304 1 15984 2221 54 54 2916 clb auto 36.42 227283 60.98 0.31 80.8082 -59885.3 -80.8082 80.8082 24.74 0.0582101 0.0490729 11.018 8.1535 180 663315 45 1.70873e+08 1.32539e+08 3.24148e+07 11116.2 1927.70 52.3874 40.9282 572993 16 47637 198636 156662753 34436395 99.8878 99.8878 -75838.8 -99.8878 -23.6459 -0.202746 4.10217e+07 14067.8 23.66 55.79 5.32403 4.51711 0.1229 0.6243 0.009317 0.3663
+k6_N10_I40_Fi6_L4_frac1_ff2_C30_45nm.xml LU32PEEng.v common 28316.96 172.87 770940 128 1464.72 -1 -1 298632 -1 -1 6872 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2202904 114 102 102506 101104 1 56194 7287 98 98 9604 clb auto 157.31 1067124 603.46 3.31 77.7827 -359403 -77.7827 77.7827 104.80 0.324031 0.249184 55.7441 41.9571 218 2572334 40 5.9175e+08 4.74511e+08 1.30006e+08 13536.6 25075.37 186.571 144.865 2324278 15 154718 690311 786978490 191825168 93.6541 93.6541 -515123 -93.6541 -33.3057 -0.200681 1.65539e+08 17236.5 69.57 243.39 13.4751 11.163 0.4781 0.6489 0.008693 0.3424
+k6_N10_I40_Fi6_L4_frac1_ff2_C30_45nm.xml mcml.v common 14767.34 78.81 954516 75 9269.46 -1 -1 447692 -1 -1 7272 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2190800 36 33 134466 132924 1 42923 7527 101 101 10201 clb auto 75.22 584760 310.70 1.77 62.8315 -336617 -62.8315 62.8315 103.11 0.191207 0.159463 37.8879 28.8731 158 1395711 44 6.22828e+08 4.89703e+08 1.02287e+08 10027.2 4187.35 143.99 114.09 1263541 14 125593 492208 320581016 70465191 72.8773 72.8773 -552199 -72.8773 -1.01085 -0.168146 1.30691e+08 12811.6 56.46 89.40 13.5773 11.5371 0.3784 0.5652 0.01187 0.423
+k6_N10_I40_Fi6_L4_frac1_ff2_C30_45nm.xml mkDelayWorker32B.v common 94.91 1.19 79272 5 9.34 -1 -1 52356 -1 -1 456 506 47 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 327256 506 553 3285 3838 1 3022 1562 50 50 2500 memory auto 3.86 15209 5.32 0.05 6.46799 -1881.17 -6.46799 6.46799 24.62 0.0115699 0.010443 2.68453 2.40333 38 26924 13 1.47946e+08 5.03323e+07 6.86584e+06 2746.33 29.87 6.31473 5.77224 25820 8 2949 3874 5242792 1332337 8.01432 8.01432 -2288.31 -8.01432 -4.08906 -0.292146 8.69095e+06 3476.38 3.52 1.15 0.34616 0.327761 0.1644 0.1453 0.03462 0.8201
+k6_N10_I40_Fi6_L4_frac1_ff2_C30_45nm.xml mkPktMerge.v common 22.23 0.16 17316 2 0.14 -1 -1 33648 -1 -1 26 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 91120 311 156 972 1128 1 953 508 28 28 784 memory auto 0.51 8361 0.82 0.01 3.68451 -4286.22 -3.68451 3.68451 2.07 0.00246858 0.00211467 0.36111 0.303329 36 16849 27 4.25198e+07 9.62124e+06 1.94918e+06 2486.20 11.49 1.30221 1.13655 15487 10 2702 3166 3943281 1103929 4.24876 4.24876 -5069.9 -4.24876 -12.9472 -0.339827 2.40571e+06 3068.51 0.87 1.10 0.144189 0.132245 0.09165 0.1573 0.01643 0.8263
+k6_N10_I40_Fi6_L4_frac1_ff2_C30_45nm.xml mkSMAdapter4B.v common 62.39 0.39 32312 7 2.63 -1 -1 37852 -1 -1 169 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 85580 193 205 2232 2437 1 1236 572 20 20 400 memory auto 0.78 9557 1.61 0.02 5.30306 -2910.84 -5.30306 5.30306 0.91 0.00310382 0.00242957 0.554573 0.443539 80 37236 49 2.07112e+07 1.18481e+07 1.95715e+06 4892.88 49.23 1.87328 1.57285 28921 13 4876 13685 7632853 1653952 6.31157 6.31157 -3533.52 -6.31157 -8.52223 -0.29768 2.46968e+06 6174.21 0.52 1.19 0.147288 0.134675 0.03028 0.309 0.02705 0.6639
+k6_N10_I40_Fi6_L4_frac1_ff2_C30_45nm.xml or1200.v common 506.33 0.49 41308 27 5.68 -1 -1 43832 -1 -1 251 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 120876 385 394 3979 4310 1 2374 1033 27 27 729 io auto 1.96 31469 4.45 0.03 14.1265 -12517.1 -14.1265 14.1265 2.00 0.00739657 0.0065366 1.47795 1.18871 124 108054 41 3.93038e+07 1.50194e+07 5.51931e+06 7571.08 468.22 5.10267 4.39903 84769 12 9789 38443 27670885 5287552 17.1212 17.1212 -14881.4 -17.1212 0 0 7.00128e+06 9603.95 2.49 7.81 0.678791 0.611618 0.02813 0.5883 0.0271 0.3846
+k6_N10_I40_Fi6_L4_frac1_ff2_C30_45nm.xml raygentop.v common 92.60 0.34 33408 8 1.41 -1 -1 40560 -1 -1 121 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 86756 214 305 2625 2741 1 1458 649 22 22 484 mult_36 auto 1.85 12669 1.46 0.01 4.37182 -2615.63 -4.37182 4.37182 1.11 0.00331022 0.00285886 0.481164 0.407639 78 43610 43 2.50602e+07 1.00852e+07 2.36474e+06 4885.83 77.70 2.17667 1.91798 35979 12 5724 15088 10191088 2118857 6.26507 6.26507 -3582.39 -6.26507 0 0 2.99432e+06 6186.61 0.72 1.65 0.170691 0.158547 0.02687 0.5619 0.03589 0.4022
+k6_N10_I40_Fi6_L4_frac1_ff2_C30_45nm.xml sha.v common 800.89 0.80 38344 20 684.57 -1 -1 95324 -1 -1 231 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 97600 38 36 3404 3440 1 1282 305 20 20 400 clb auto 1.91 14851 1.61 0.01 13.6521 -4957.71 -13.6521 13.6521 0.89 0.00385254 0.00325373 0.622463 0.456503 124 62675 32 2.07112e+07 1.24495e+07 2.89149e+06 7228.73 95.95 2.54295 2.04322 51753 11 4863 23805 12343285 2663008 17.8213 17.8213 -6227.18 -17.8213 0 0 3.67009e+06 9175.24 0.80 2.08 0.219514 0.195916 0.01465 0.6035 0.03025 0.3663
+k6_N10_I40_Fi6_L4_frac1_ff2_C35_45nm.xml bgm.v common 2200.76 22.99 393132 22 484.27 -1 -1 152604 -1 -1 2547 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 768432 257 32 32168 31683 1 18840 2847 61 61 3721 clb auto 40.55 246784 96.57 1.03 16.7465 -23783.6 -16.7465 16.7465 30.99 0.153984 0.119277 13.2104 9.83837 156 827882 44 2.18169e+08 1.41627e+08 3.62106e+07 9731.42 1337.33 57.603 44.8454 748500 15 77845 376276 230217229 45197495 20.297 20.297 -28317.2 -20.297 0 0 4.58037e+07 12309.5 17.35 44.94 3.97796 3.37332 0.2303 0.6236 0.02165 0.3548
+k6_N10_I40_Fi6_L4_frac1_ff2_C35_45nm.xml blob_merge.v common 456.70 0.62 60008 18 84.91 -1 -1 67664 -1 -1 552 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 196120 36 100 6600 6700 1 2899 688 30 30 900 clb auto 3.46 47037 9.78 0.07 9.2092 -2828.87 -9.2092 9.2092 2.89 0.0273373 0.0227087 3.8783 2.99565 140 170702 26 4.8774e+07 2.97495e+07 7.62094e+06 8467.71 327.19 9.6764 7.73652 141525 14 10515 60663 35571659 6970211 11.404 11.404 -3332.29 -11.404 0 0 9.70551e+06 10783.9 2.54 6.54 0.708956 0.616355 0.03524 0.5468 0.04251 0.4107
+k6_N10_I40_Fi6_L4_frac1_ff2_C35_45nm.xml boundtop.v common 8.59 0.80 47512 2 0.58 -1 -1 36980 -1 -1 84 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 69564 114 192 455 647 1 308 390 13 13 169 clb auto 0.11 772 0.57 0.00 1.8109 -228.476 -1.8109 1.8109 0.40 0.00104637 0.00090389 0.166307 0.143101 38 3617 27 6.63067e+06 4.5271e+06 384612. 2275.81 2.82 0.553566 0.493022 2952 13 722 1037 258310 83093 2.25318 2.25318 -279.854 -2.25318 0 0 489150. 2894.38 0.13 0.10 0.0360539 0.0330484 0.009234 0.4751 0.07574 0.4491
+k6_N10_I40_Fi6_L4_frac1_ff2_C35_45nm.xml ch_intrinsics.v common 4.64 0.06 9804 3 0.28 -1 -1 36156 -1 -1 68 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 71128 99 130 363 493 1 256 298 12 12 144 clb auto 0.10 680 0.40 0.00 2.09818 -221.289 -2.09818 2.09818 0.36 0.000646936 0.000553775 0.113479 0.096173 40 2733 18 5.66058e+06 4.21279e+06 333335. 2314.82 1.65 0.361159 0.316637 2365 7 512 672 231379 75247 2.96524 2.96524 -279.405 -2.96524 0 0 419432. 2912.72 0.10 0.08 0.0210923 0.0194134 0.008661 0.2953 0.05924 0.6455
+k6_N10_I40_Fi6_L4_frac1_ff2_C35_45nm.xml diffeq1.v common 32.24 0.06 9508 15 0.43 -1 -1 34524 -1 -1 39 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 77864 162 96 999 932 1 700 302 16 16 256 mult_36 auto 0.32 5236 1.01 0.01 21.2427 -1908.82 -21.2427 21.2427 0.74 0.00351156 0.00324427 0.501484 0.453147 74 19616 35 1.21132e+07 4.08187e+06 1.13171e+06 4420.74 24.55 1.37915 1.25515 16399 15 3179 6920 5726070 1330601 25.8226 25.8226 -2360.48 -25.8226 0 0 1.42133e+06 5552.06 0.35 1.46 0.161722 0.150545 0.00865 0.4695 0.01642 0.5141
+k6_N10_I40_Fi6_L4_frac1_ff2_C35_45nm.xml diffeq2.v common 20.41 0.04 8760 14 0.33 -1 -1 33484 -1 -1 26 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 70540 66 96 719 590 1 525 195 18 18 324 mult_36 auto 0.23 4840 0.37 0.00 16.4878 -964.821 -16.4878 16.4878 0.70 0.00150931 0.00139966 0.183955 0.167403 50 17360 34 1.57076e+07 4.17324e+06 1.01953e+06 3146.70 14.35 0.765571 0.704939 14373 19 3001 7032 5351022 1259207 20.1645 20.1645 -1211.67 -20.1645 0 0 1.31112e+06 4046.65 0.34 0.87 0.0812006 0.076422 0.009599 0.3739 0.01812 0.6079
+k6_N10_I40_Fi6_L4_frac1_ff2_C35_45nm.xml LU8PEEng.v common 2109.73 21.10 228112 129 277.44 -1 -1 100648 -1 -1 1938 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 632864 114 102 29578 29304 1 16038 2206 53 53 2809 clb auto 46.10 225311 48.12 0.31 78.4608 -54619.6 -78.4608 78.4608 22.46 0.0654445 0.0468347 9.0573 6.55991 176 651745 39 1.63647e+08 1.3173e+08 3.06070e+07 10896.1 1514.10 44.5158 34.5988 566974 15 47850 196507 153110589 32798870 94.3937 94.3937 -71435.1 -94.3937 -24.0109 -0.295467 3.84485e+07 13687.6 13.49 36.27 3.44798 2.88178 0.1249 0.5909 0.009062 0.4
+k6_N10_I40_Fi6_L4_frac1_ff2_C35_45nm.xml LU32PEEng.v common 30256.84 171.37 771012 128 1441.87 -1 -1 298580 -1 -1 6848 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2191644 114 102 102506 101104 1 56224 7263 98 98 9604 clb auto 165.43 1084523 491.00 2.55 76.4702 -314105 -76.4702 76.4702 111.73 0.259294 0.218136 44.6171 33.6633 218 2570906 43 5.9175e+08 4.73218e+08 1.30006e+08 13536.6 27156.40 179.537 140.198 2315126 16 154587 677063 724692834 164445484 92.2608 92.2608 -460657 -92.2608 -22.7472 -0.29436 1.65539e+08 17236.5 71.76 205.69 13.9274 11.6036 0.4985 0.6237 0.008492 0.3678
+k6_N10_I40_Fi6_L4_frac1_ff2_C35_45nm.xml mcml.v common 16994.60 69.79 954664 75 9403.39 -1 -1 447652 -1 -1 7255 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2183124 36 33 134466 132924 1 42805 7510 101 101 10201 clb auto 70.37 573431 298.49 1.77 61.9912 -301863 -61.9912 61.9912 97.28 0.212241 0.159137 36.7121 28.0634 164 1353530 44 6.22828e+08 4.88787e+08 1.05974e+08 10388.6 6379.24 145.536 116.566 1237459 14 118845 427476 283447228 60723816 73.2507 73.2507 -478663 -73.2507 0 0 1.35700e+08 13302.7 43.86 69.16 11.4601 9.86592 0.3927 0.5599 0.01176 0.4283
+k6_N10_I40_Fi6_L4_frac1_ff2_C35_45nm.xml mkDelayWorker32B.v common 92.82 1.14 79332 5 12.63 -1 -1 52504 -1 -1 456 506 47 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 326288 506 553 3285 3838 1 3022 1562 50 50 2500 memory auto 3.89 14991 5.27 0.04 6.58259 -1902.41 -6.58259 6.58259 20.44 0.0116155 0.0105201 2.67803 2.3978 38 26519 12 1.47946e+08 5.03323e+07 6.86584e+06 2746.33 27.45 6.1662 5.63007 25447 8 2883 3710 5000712 1319483 7.60552 7.60552 -2256.71 -7.60552 -2.49705 -0.29436 8.69095e+06 3476.38 3.23 1.29 0.412986 0.390808 0.1713 0.1443 0.03573 0.82
+k6_N10_I40_Fi6_L4_frac1_ff2_C35_45nm.xml mkPktMerge.v common 22.05 0.16 17560 2 0.08 -1 -1 33676 -1 -1 26 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 91160 311 156 972 1128 1 953 508 28 28 784 memory auto 0.52 8457 0.84 0.01 3.71854 -4493.32 -3.71854 3.71854 2.93 0.002523 0.00213312 0.368834 0.308852 44 16254 14 4.25198e+07 9.62124e+06 2.30233e+06 2936.64 11.10 1.37947 1.20205 15008 9 2425 2875 3191512 833489 4.2064 4.2064 -5079.93 -4.2064 -17.0844 -0.298787 2.99575e+06 3821.11 0.74 0.57 0.0828352 0.076196 0.09339 0.1659 0.01789 0.8163
+k6_N10_I40_Fi6_L4_frac1_ff2_C35_45nm.xml mkSMAdapter4B.v common 58.99 0.35 32388 7 3.86 -1 -1 37868 -1 -1 167 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 85464 193 205 2232 2437 1 1226 570 20 20 400 memory auto 1.21 9528 1.58 0.01 5.04089 -2897.72 -5.04089 5.04089 1.24 0.00334526 0.00269545 0.55577 0.447232 84 37019 46 2.07112e+07 1.17403e+07 2.04091e+06 5102.28 43.11 2.24355 1.90695 28627 13 4577 12616 8046711 1678791 6.54944 6.54944 -3631.19 -6.54944 -6.91309 -0.360359 2.60004e+06 6500.10 0.54 1.28 0.152493 0.139149 0.02992 0.3141 0.02846 0.6575
+k6_N10_I40_Fi6_L4_frac1_ff2_C35_45nm.xml or1200.v common 139.88 0.61 41412 27 5.81 -1 -1 43916 -1 -1 246 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 157208 385 394 3979 4310 1 2353 1028 27 27 729 io auto 2.94 30901 3.83 0.03 13.8228 -12389.8 -13.8228 13.8228 2.54 0.00738264 0.00652037 1.21197 1.0043 126 97341 29 3.93038e+07 1.47499e+07 5.60350e+06 7686.55 102.75 4.3674 3.7968 80929 12 9096 35852 23793301 4596432 16.4538 16.4538 -14040.4 -16.4538 0 0 7.09079e+06 9726.74 2.48 4.09 0.374843 0.343183 0.02907 0.5738 0.0272 0.399
+k6_N10_I40_Fi6_L4_frac1_ff2_C35_45nm.xml raygentop.v common 96.59 0.44 33588 8 2.12 -1 -1 40540 -1 -1 121 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 86896 214 305 2625 2741 1 1465 649 22 22 484 mult_36 auto 2.13 12544 2.29 0.02 4.46431 -2622.57 -4.46431 4.46431 1.80 0.00332547 0.00289944 0.862527 0.718944 78 42728 47 2.50602e+07 1.00852e+07 2.36474e+06 4885.83 75.97 2.85607 2.48941 35104 14 5941 14323 9400744 2009770 5.24252 5.24252 -3338.31 -5.24252 0 0 2.99432e+06 6186.61 0.98 1.55 0.207798 0.19236 0.03069 0.5502 0.03738 0.4124
+k6_N10_I40_Fi6_L4_frac1_ff2_C35_45nm.xml sha.v common 710.56 1.16 38636 20 610.94 -1 -1 95312 -1 -1 230 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 96812 38 36 3404 3440 1 1269 304 20 20 400 clb auto 1.41 14378 1.37 0.01 13.8614 -4541.77 -13.8614 13.8614 0.85 0.00379599 0.00316644 0.534262 0.398358 114 58251 40 2.07112e+07 1.23956e+07 2.68714e+06 6717.85 77.25 2.33882 1.88836 49256 11 4876 22509 11805468 2552753 18.41 18.41 -5811.29 -18.41 0 0 3.39772e+06 8494.29 1.08 2.40 0.269859 0.239739 0.01427 0.5631 0.0284 0.4085
+k6_N10_I40_Fi6_L4_frac1_ff2_C40_45nm.xml bgm.v common 2078.22 23.25 393124 22 495.95 -1 -1 152436 -1 -1 2552 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 764980 257 32 32168 31683 1 18789 2852 61 61 3721 clb auto 41.75 244360 76.69 0.54 17.4989 -23891.1 -17.4989 17.4989 31.97 0.0697769 0.0594167 9.96949 7.46963 154 817682 49 2.18169e+08 1.41896e+08 3.58526e+07 9635.21 1221.79 46.3166 36.2401 742596 16 72184 347732 224879783 43938653 21.5997 21.5997 -28748.8 -21.5997 0 0 4.54032e+07 12201.9 17.75 46.77 5.44144 4.59256 0.2279 0.6033 0.02041 0.3763
+k6_N10_I40_Fi6_L4_frac1_ff2_C40_45nm.xml blob_merge.v common 401.42 0.63 60040 18 83.44 -1 -1 67516 -1 -1 556 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 199464 36 100 6600 6700 1 2871 692 30 30 900 clb auto 3.56 47451 5.48 0.04 9.44888 -2867.46 -9.44888 9.44888 2.46 0.0114429 0.00966405 1.88698 1.38402 138 175705 49 4.8774e+07 2.99651e+07 7.52263e+06 8358.48 275.07 7.4549 5.92092 141638 11 10359 60668 35819397 6996160 12.0929 12.0929 -3328.96 -12.0929 0 0 9.61083e+06 10678.7 3.22 7.35 0.727234 0.641782 0.03536 0.5327 0.03974 0.4276
+k6_N10_I40_Fi6_L4_frac1_ff2_C40_45nm.xml boundtop.v common 8.90 0.79 47576 2 0.58 -1 -1 37004 -1 -1 84 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 69520 114 192 455 647 1 308 390 13 13 169 clb auto 0.10 799 0.55 0.01 1.94295 -243.418 -1.94295 1.94295 0.41 0.001083 0.000959908 0.160218 0.136548 38 3689 29 6.63067e+06 4.5271e+06 384612. 2275.81 3.17 0.533456 0.47286 3087 10 699 955 261684 79725 2.42667 2.42667 -305.162 -2.42667 0 0 489150. 2894.38 0.12 0.09 0.0326581 0.0302198 0.008974 0.4821 0.07243 0.4455
+k6_N10_I40_Fi6_L4_frac1_ff2_C40_45nm.xml ch_intrinsics.v common 4.55 0.06 9920 3 0.25 -1 -1 36096 -1 -1 68 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 70856 99 130 363 493 1 257 298 12 12 144 clb auto 0.09 636 0.38 0.00 2.38239 -236.783 -2.38239 2.38239 0.32 0.000628531 0.000542912 0.103982 0.0885399 42 2687 11 5.66058e+06 4.21279e+06 345702. 2400.71 1.64 0.310004 0.271975 2385 9 550 776 229234 78783 2.75995 2.75995 -288.153 -2.75995 0 0 434679. 3018.61 0.10 0.08 0.0240769 0.0221595 0.009368 0.2945 0.06011 0.6453
+k6_N10_I40_Fi6_L4_frac1_ff2_C40_45nm.xml diffeq1.v common 39.13 0.04 9608 15 0.48 -1 -1 34632 -1 -1 39 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 78204 162 96 999 932 1 699 302 16 16 256 mult_36 auto 0.32 5435 1.00 0.01 20.6865 -1816.12 -20.6865 20.6865 0.73 0.00348265 0.00320389 0.502902 0.450335 74 20304 35 1.21132e+07 4.08187e+06 1.13171e+06 4420.74 31.24 1.36824 1.24012 16615 20 3233 6910 6037786 1333754 25.665 25.665 -2316.84 -25.665 0 0 1.42133e+06 5552.06 0.35 1.50 0.191846 0.179935 0.00884 0.4637 0.01616 0.5201
+k6_N10_I40_Fi6_L4_frac1_ff2_C40_45nm.xml diffeq2.v common 27.66 0.04 8804 14 0.24 -1 -1 33496 -1 -1 26 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 70684 66 96 719 590 1 525 195 18 18 324 mult_36 auto 0.15 4830 0.41 0.01 16.2675 -953.463 -16.2675 16.2675 0.62 0.00145144 0.00133366 0.207861 0.189194 50 18405 50 1.57076e+07 4.17324e+06 1.01953e+06 3146.70 20.99 1.00462 0.927578 14749 23 3756 9193 6893918 1752818 20.3379 20.3379 -1228.6 -20.3379 0 0 1.31112e+06 4046.65 0.37 1.73 0.181898 0.170751 0.009681 0.3692 0.01783 0.613
+k6_N10_I40_Fi6_L4_frac1_ff2_C40_45nm.xml LU8PEEng.v common 2036.66 22.15 228152 129 263.14 -1 -1 100772 -1 -1 1949 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 661560 114 102 29578 29304 1 15710 2217 54 54 2916 clb auto 41.67 224169 50.49 0.31 78.2563 -59612.9 -78.2563 78.2563 24.61 0.0688782 0.0486834 10.4898 7.52963 176 633169 31 1.70873e+08 1.32323e+08 3.18825e+07 10933.7 1476.43 41.609 31.8388 559048 16 46315 190530 149881165 32148795 96.0291 96.0291 -74689.6 -96.0291 -26.5573 -0.295467 4.00454e+07 13733.0 17.15 36.49 3.94872 3.35315 0.1305 0.5775 0.009101 0.4134
+k6_N10_I40_Fi6_L4_frac1_ff2_C40_45nm.xml LU32PEEng.v common 20861.69 169.30 771020 128 1457.81 -1 -1 298524 -1 -1 6850 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2192092 114 102 102506 101104 1 55215 7265 98 98 9604 clb auto 149.88 1067318 455.82 2.61 75.4041 -347209 -75.4041 75.4041 98.89 0.260867 0.216007 42.805 31.2652 216 2476670 26 5.9175e+08 4.73325e+08 1.29156e+08 13448.2 17834.36 178.824 137.904 2303473 14 151711 659383 770558055 174287377 95.8216 95.8216 -511244 -95.8216 -31.8777 -0.295467 1.63354e+08 17008.9 55.61 215.04 12.709 10.6935 0.5031 0.6059 0.008088 0.386
+k6_N10_I40_Fi6_L4_frac1_ff2_C40_45nm.xml mcml.v common 18267.32 66.43 954532 75 9328.02 -1 -1 447756 -1 -1 7266 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2183164 36 33 134466 132924 1 42761 7521 101 101 10201 clb auto 84.61 565216 305.50 1.75 63.9006 -307262 -63.9006 63.9006 149.84 0.239149 0.190103 38.8868 29.4064 156 1320493 46 6.22828e+08 4.8938e+08 1.01138e+08 9914.53 7503.41 148.035 117.824 1222971 14 120086 428810 291045069 62650045 74.8787 74.8787 -477850 -74.8787 0 0 1.28097e+08 12557.3 60.11 76.24 10.987 9.59273 0.3914 0.5306 0.01141 0.458
+k6_N10_I40_Fi6_L4_frac1_ff2_C40_45nm.xml mkDelayWorker32B.v common 91.21 0.87 79348 5 9.84 -1 -1 52392 -1 -1 456 506 47 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 326372 506 553 3285 3838 1 3022 1562 50 50 2500 memory auto 3.20 14667 6.52 0.04 6.89453 -1785.96 -6.89453 6.89453 21.20 0.012041 0.010976 3.3384 2.98293 38 26353 9 1.47946e+08 5.03323e+07 6.86584e+06 2746.33 27.15 7.03557 6.41777 25211 10 2716 3467 4549591 1141590 8.0276 8.0276 -2219.01 -8.0276 -3.89072 -0.295467 8.69095e+06 3476.38 3.83 1.76 0.666078 0.626767 0.1644 0.1443 0.03585 0.8198
+k6_N10_I40_Fi6_L4_frac1_ff2_C40_45nm.xml mkPktMerge.v common 25.82 0.16 17512 2 0.12 -1 -1 33744 -1 -1 26 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 91180 311 156 972 1128 1 953 508 28 28 784 memory auto 0.50 8291 1.20 0.01 3.80017 -4600.31 -3.80017 3.80017 2.11 0.0048892 0.00427807 0.571628 0.490032 40 16497 11 4.25198e+07 9.62124e+06 2.13295e+06 2720.61 14.31 2.3085 2.0571 15162 10 2528 2890 3093427 879932 4.23738 4.23738 -5113.89 -4.23738 -12.615 -0.298787 2.67004e+06 3405.67 1.01 0.84 0.117881 0.108508 0.09257 0.1615 0.01719 0.8213
+k6_N10_I40_Fi6_L4_frac1_ff2_C40_45nm.xml mkSMAdapter4B.v common 65.22 0.36 32488 7 2.88 -1 -1 37880 -1 -1 169 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 84796 193 205 2232 2437 1 1229 572 20 20 400 memory auto 0.82 9506 2.46 0.03 4.95519 -2933.62 -4.95519 4.95519 0.88 0.00783057 0.00627872 1.04978 0.868922 82 37298 40 2.07112e+07 1.18481e+07 1.99567e+06 4989.17 48.74 2.6731 2.27224 27913 13 4763 12739 7764473 1662079 6.13068 6.13068 -3592.42 -6.13068 -10.3667 -0.298787 2.51020e+06 6275.51 0.79 1.90 0.205981 0.188728 0.0313 0.2985 0.02716 0.6743
+k6_N10_I40_Fi6_L4_frac1_ff2_C40_45nm.xml or1200.v common 384.33 0.62 41492 27 6.09 -1 -1 43872 -1 -1 248 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 124004 385 394 3979 4310 1 2375 1030 27 27 729 io auto 2.74 30978 3.74 0.03 13.7654 -12743.1 -13.7654 13.7654 2.05 0.00749196 0.00661972 1.18937 0.981621 124 98369 30 3.93038e+07 1.48577e+07 5.51931e+06 7571.08 348.31 4.48251 3.90223 80485 12 9289 35679 24643405 4736848 17.2329 17.2329 -15281.1 -17.2329 0 0 7.00128e+06 9603.95 2.56 5.47 0.462386 0.421078 0.02897 0.5615 0.02615 0.4124
+k6_N10_I40_Fi6_L4_frac1_ff2_C40_45nm.xml raygentop.v common 81.36 0.32 33548 8 1.46 -1 -1 40472 -1 -1 121 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 87208 214 305 2625 2741 1 1457 649 22 22 484 mult_36 auto 2.00 12221 1.35 0.01 4.59762 -2571.85 -4.59762 4.59762 1.12 0.00334573 0.00295522 0.462278 0.397409 78 41334 42 2.50602e+07 1.00852e+07 2.36474e+06 4885.83 64.22 2.15213 1.90719 33997 14 5826 14016 9701592 2069195 5.38359 5.38359 -3348.84 -5.38359 0 0 2.99432e+06 6186.61 0.99 2.62 0.360384 0.335169 0.03002 0.5352 0.03723 0.4276
+k6_N10_I40_Fi6_L4_frac1_ff2_C40_45nm.xml sha.v common 708.93 1.15 38612 20 619.11 -1 -1 95428 -1 -1 229 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 96236 38 36 3404 3440 1 1282 303 20 20 400 clb auto 1.99 14231 1.46 0.01 13.176 -4402.72 -13.176 13.176 0.88 0.00374042 0.00307915 0.581387 0.42114 116 56155 42 2.07112e+07 1.23417e+07 2.72852e+06 6821.30 69.13 2.41771 1.92851 47958 12 4659 21578 10494542 2320801 17.8784 17.8784 -5519.43 -17.8784 0 0 3.43866e+06 8596.65 0.78 1.77 0.233262 0.207186 0.01487 0.5477 0.02799 0.4243
+k6_N10_I40_Fi6_L4_frac1_ff2_C45_45nm.xml bgm.v common 2065.40 23.07 393244 22 468.77 -1 -1 152648 -1 -1 2534 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 763676 257 32 32168 31683 1 18777 2834 61 61 3721 clb auto 43.79 246079 65.12 0.49 16.6398 -23900.3 -16.6398 16.6398 31.71 0.0637864 0.0547796 8.9062 6.61113 156 806711 31 2.18169e+08 1.40926e+08 3.62106e+07 9731.42 1241.00 45.7283 35.8273 734536 15 73402 345148 210679131 41614948 20.1906 20.1906 -28185.2 -20.1906 0 0 4.58037e+07 12309.5 18.79 42.93 4.61206 4.00201 0.2428 0.5868 0.02096 0.3922
+k6_N10_I40_Fi6_L4_frac1_ff2_C45_45nm.xml blob_merge.v common 430.32 0.66 60112 18 86.78 -1 -1 67520 -1 -1 550 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 198296 36 100 6600 6700 1 2881 686 30 30 900 clb auto 3.57 47330 9.22 0.06 9.73648 -2806.37 -9.73648 9.73648 2.94 0.0175688 0.0137625 3.66912 2.82712 140 160517 17 4.8774e+07 2.96417e+07 7.62094e+06 8467.71 292.11 9.31809 7.4773 137145 10 9792 54675 31422569 6180392 12.5041 12.5041 -3290.34 -12.5041 0 0 9.70551e+06 10783.9 3.32 9.81 1.12379 0.967787 0.036 0.5193 0.03813 0.4426
+k6_N10_I40_Fi6_L4_frac1_ff2_C45_45nm.xml boundtop.v common 6.75 0.74 47660 2 0.41 -1 -1 36976 -1 -1 84 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 69784 114 192 455 647 1 308 390 13 13 169 clb auto 0.11 778 0.36 0.00 1.86131 -235.017 -1.86131 1.86131 0.42 0.000603935 0.00052991 0.0990095 0.0861025 36 3826 46 6.63067e+06 4.5271e+06 367804. 2176.36 1.98 0.344748 0.3079 3001 14 846 1124 266611 83472 2.26679 2.26679 -293.14 -2.26679 0 0 456028. 2698.39 0.09 0.08 0.0277051 0.0256598 0.009242 0.4568 0.07372 0.4695
+k6_N10_I40_Fi6_L4_frac1_ff2_C45_45nm.xml ch_intrinsics.v common 3.52 0.06 9992 3 0.29 -1 -1 36176 -1 -1 68 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 70784 99 130 363 493 1 256 298 12 12 144 clb auto 0.06 694 0.24 0.00 2.15901 -219.658 -2.15901 2.15901 0.20 0.000420585 0.000366589 0.066179 0.0570612 46 2458 14 5.66058e+06 4.21279e+06 378970. 2631.74 1.11 0.219858 0.194449 2332 8 466 611 189031 60013 3.03249 3.03249 -274.963 -3.03249 0 0 486261. 3376.82 0.10 0.06 0.0184061 0.0169371 0.008872 0.3038 0.06052 0.6357
+k6_N10_I40_Fi6_L4_frac1_ff2_C45_45nm.xml diffeq1.v common 31.22 0.05 9696 15 0.45 -1 -1 34504 -1 -1 39 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 70640 162 96 999 932 1 698 302 16 16 256 mult_36 auto 0.22 5229 0.54 0.01 20.8066 -1854.15 -20.8066 20.8066 0.45 0.00157629 0.001441 0.227053 0.203719 70 18993 25 1.21132e+07 4.08187e+06 1.08614e+06 4242.72 25.32 1.28795 1.17676 15429 16 3061 6499 4293937 979177 25.1439 25.1439 -2146.32 -25.1439 0 0 1.36713e+06 5340.37 0.30 0.96 0.144019 0.134547 0.008911 0.4431 0.01593 0.541
+k6_N10_I40_Fi6_L4_frac1_ff2_C45_45nm.xml diffeq2.v common 23.82 0.03 8900 14 0.29 -1 -1 33496 -1 -1 26 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 70880 66 96 719 590 1 525 195 18 18 324 mult_36 auto 0.19 4713 0.46 0.01 16.0103 -952.87 -16.0103 16.0103 0.62 0.0039935 0.00359418 0.242709 0.221897 52 16400 37 1.57076e+07 4.17324e+06 1.05274e+06 3249.19 18.54 1.09167 1.00774 13362 17 2900 6604 4170554 981670 19.9287 19.9287 -1183.16 -19.9287 0 0 1.38553e+06 4276.33 0.25 0.68 0.0771253 0.07243 0.009935 0.3605 0.01882 0.6207
+k6_N10_I40_Fi6_L4_frac1_ff2_C45_45nm.xml LU8PEEng.v common 1859.05 21.45 228164 129 291.26 -1 -1 100804 -1 -1 1931 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 635392 114 102 29578 29304 1 15733 2199 53 53 2809 clb auto 40.01 226146 45.48 0.27 81.2919 -54112.7 -81.2919 81.2919 25.60 0.056279 0.0481723 8.97282 6.67308 176 624613 29 1.63647e+08 1.31353e+08 3.06070e+07 10896.1 1285.77 42.9763 33.4776 552518 15 47344 191765 147236406 32165608 96.4999 96.4999 -68558.7 -96.4999 -32.9719 -0.295467 3.84485e+07 13687.6 13.19 33.99 3.42771 2.84702 0.1314 0.5563 0.008599 0.4351
+k6_N10_I40_Fi6_L4_frac1_ff2_C45_45nm.xml LU32PEEng.v common 17952.71 180.65 771128 128 1433.50 -1 -1 298644 -1 -1 6828 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2166368 114 102 102506 101104 1 55591 7243 98 98 9604 clb auto 150.66 1041959 434.22 2.56 75.3992 -359945 -75.3992 75.3992 98.85 0.32885 0.25239 39.6343 30.0305 212 2494960 50 5.9175e+08 4.7214e+08 1.26804e+08 13203.3 14962.32 172.123 135.027 2228569 15 150905 651752 687497794 158385910 93.2901 93.2901 -512166 -93.2901 -40.1774 -0.175894 1.61071e+08 16771.3 77.82 208.49 15.9962 13.37 0.5149 0.5833 0.008069 0.4087
+k6_N10_I40_Fi6_L4_frac1_ff2_C45_45nm.xml mcml.v common 14855.23 67.32 954692 75 9184.64 -1 -1 447748 -1 -1 7274 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2179908 36 33 134466 132924 1 42802 7529 101 101 10201 clb auto 77.95 535810 269.00 1.61 61.5041 -356412 -61.5041 61.5041 105.81 0.1846 0.155393 33.0119 25.4879 142 1340442 37 6.22828e+08 4.89811e+08 9.32334e+07 9139.63 4538.13 130.492 104.127 1185937 14 126211 431092 276787645 59042480 73.862 73.862 -535912 -73.862 -0.12604 -0.0315101 1.18169e+08 11584.0 60.55 66.01 10.1604 8.78839 0.3816 0.5008 0.01135 0.4878
+k6_N10_I40_Fi6_L4_frac1_ff2_C45_45nm.xml mkDelayWorker32B.v common 88.90 0.87 79460 5 11.61 -1 -1 52488 -1 -1 456 506 47 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 326292 506 553 3285 3838 1 3022 1562 50 50 2500 memory auto 3.27 14303 5.12 0.04 6.49348 -1942.81 -6.49348 6.49348 20.64 0.012284 0.0107846 2.61696 2.34643 38 26225 11 1.47946e+08 5.03323e+07 6.86584e+06 2746.33 26.93 6.15405 5.62397 24983 9 2848 3875 4036572 1008324 8.108 8.108 -2315.1 -8.108 -7.82091 -0.295467 8.69095e+06 3476.38 3.20 0.98 0.394072 0.373834 0.1643 0.1433 0.03612 0.8205
+k6_N10_I40_Fi6_L4_frac1_ff2_C45_45nm.xml mkPktMerge.v common 20.42 0.15 17532 2 0.09 -1 -1 33700 -1 -1 26 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 91396 311 156 972 1128 1 953 508 28 28 784 memory auto 0.52 7923 0.82 0.01 3.71854 -4576.06 -3.71854 3.71854 2.14 0.00253247 0.00215431 0.364216 0.306998 40 15751 12 4.25198e+07 9.62124e+06 2.13295e+06 2720.61 10.38 1.31676 1.14949 14623 9 2298 2710 3691779 1056426 4.30266 4.30266 -5295.01 -4.30266 -18.6622 -0.322548 2.67004e+06 3405.67 0.65 0.71 0.0874355 0.0801108 0.0912 0.1571 0.01719 0.8257
+k6_N10_I40_Fi6_L4_frac1_ff2_C45_45nm.xml mkSMAdapter4B.v common 62.52 0.36 32648 7 2.65 -1 -1 37816 -1 -1 168 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 84692 193 205 2232 2437 1 1224 571 20 20 400 memory auto 0.82 9498 1.57 0.01 4.75116 -2865.81 -4.75116 4.75116 0.91 0.00310846 0.00249154 0.570959 0.460448 84 34971 39 2.07112e+07 1.17942e+07 2.04091e+06 5102.28 48.54 2.09854 1.78383 27625 12 4410 11686 7658432 1597046 6.41281 6.41281 -3608.12 -6.41281 -8.92593 -0.359474 2.60004e+06 6500.10 0.69 1.36 0.157802 0.143478 0.03082 0.3032 0.0282 0.6686
+k6_N10_I40_Fi6_L4_frac1_ff2_C45_45nm.xml or1200.v common 386.68 0.53 41620 27 8.23 -1 -1 43680 -1 -1 246 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 121596 385 394 3979 4310 1 2366 1028 27 27 729 io auto 2.83 30515 4.25 0.03 13.781 -13077.9 -13.781 13.781 1.98 0.00744263 0.00662129 1.47894 1.19073 118 98257 33 3.93038e+07 1.47499e+07 5.29640e+06 7265.29 349.36 5.11838 4.41325 79605 12 9640 36118 23487773 4570863 16.3652 16.3652 -15124.2 -16.3652 0 0 6.69984e+06 9190.45 2.31 4.39 0.414543 0.378109 0.02956 0.5386 0.02567 0.4357
+k6_N10_I40_Fi6_L4_frac1_ff2_C45_45nm.xml raygentop.v common 68.48 0.39 33752 8 1.43 -1 -1 40508 -1 -1 121 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 87240 214 305 2625 2741 1 1457 649 22 22 484 mult_36 auto 2.39 12541 1.40 0.02 4.55918 -2579.4 -4.55918 4.55918 1.12 0.00345913 0.00299519 0.48024 0.410777 78 41109 43 2.50602e+07 1.00852e+07 2.36474e+06 4885.83 52.42 2.08599 1.84025 33480 13 5772 13960 8670315 1879222 5.39121 5.39121 -3465.69 -5.39121 0 0 2.99432e+06 6186.61 0.82 1.86 0.236217 0.219948 0.03048 0.5266 0.03662 0.4368
+k6_N10_I40_Fi6_L4_frac1_ff2_C45_45nm.xml sha.v common 754.42 1.15 38496 20 627.84 -1 -1 95384 -1 -1 229 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 98060 38 36 3404 3440 1 1277 303 20 20 400 clb auto 1.42 14426 1.36 0.01 13.573 -4646.13 -13.573 13.573 0.87 0.00370808 0.0031364 0.551635 0.394034 118 56275 46 2.07112e+07 1.23417e+07 2.77466e+06 6936.66 106.25 3.32061 2.7338 46822 12 4728 20842 10130098 2209717 16.8767 16.8767 -5589.68 -16.8767 0 0 3.51288e+06 8782.19 0.76 1.66 0.216395 0.192629 0.01565 0.5343 0.02841 0.4373
+k6_N10_I40_Fi6_L4_frac1_ff2_C50_45nm.xml bgm.v common 2195.10 23.31 393372 22 472.06 -1 -1 152588 -1 -1 2534 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 764328 257 32 32168 31683 1 18726 2834 61 61 3721 clb auto 50.68 249112 75.26 0.93 16.9654 -24348.8 -16.9654 16.9654 33.58 0.137236 0.102193 10.3221 7.6245 154 811839 38 2.18169e+08 1.40926e+08 3.58526e+07 9635.21 1358.30 45.5214 35.6139 732687 14 71987 336320 222204676 43407385 20.8308 20.8308 -29002.8 -20.8308 0 0 4.54032e+07 12201.9 15.03 44.72 3.87481 3.32383 0.2446 0.571 0.01996 0.409
+k6_N10_I40_Fi6_L4_frac1_ff2_C50_45nm.xml blob_merge.v common 427.36 0.48 60228 18 89.55 -1 -1 67548 -1 -1 550 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 196596 36 100 6600 6700 1 2878 686 30 30 900 clb auto 3.66 46465 8.33 0.04 9.42319 -2757.97 -9.42319 9.42319 4.30 0.0136878 0.00931175 3.27302 2.4912 136 168077 36 4.8774e+07 2.96417e+07 7.42467e+06 8249.63 289.09 10.5244 8.39596 137879 12 10647 58971 35932326 6975092 11.4792 11.4792 -3220.39 -11.4792 0 0 9.44971e+06 10499.7 2.27 9.20 1.08851 0.937157 0.03715 0.5014 0.03931 0.4592
+k6_N10_I40_Fi6_L4_frac1_ff2_C50_45nm.xml boundtop.v common 7.00 0.71 47720 2 0.36 -1 -1 37036 -1 -1 84 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 69908 114 192 455 647 1 308 390 13 13 169 clb auto 0.10 798 0.56 0.00 2.01271 -236.334 -2.01271 2.01271 0.38 0.00100579 0.000880891 0.165888 0.143362 46 2922 20 6.63067e+06 4.5271e+06 456028. 2698.39 2.39 0.449716 0.400481 2592 13 578 837 180907 59688 2.27371 2.27371 -284.41 -2.27371 0 0 585697. 3465.66 0.09 0.05 0.0220137 0.0203412 0.009539 0.4564 0.08035 0.4633
+k6_N10_I40_Fi6_L4_frac1_ff2_C50_45nm.xml ch_intrinsics.v common 4.34 0.06 10080 3 0.31 -1 -1 36076 -1 -1 68 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 71196 99 130 363 493 1 256 298 12 12 144 clb auto 0.10 681 0.37 0.00 2.38239 -239.118 -2.38239 2.38239 0.31 0.000632733 0.00055918 0.102088 0.0870644 46 2484 10 5.66058e+06 4.21279e+06 378970. 2631.74 1.55 0.305121 0.268378 2285 7 450 616 174598 57521 3.11207 3.11207 -285.948 -3.11207 0 0 486261. 3376.82 0.08 0.04 0.0116336 0.0107592 0.008716 0.2988 0.06005 0.6412
+k6_N10_I40_Fi6_L4_frac1_ff2_C50_45nm.xml diffeq1.v common 35.44 0.05 9888 15 0.44 -1 -1 34636 -1 -1 39 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 70964 162 96 999 932 1 698 302 16 16 256 mult_36 auto 0.34 5257 1.00 0.01 21.082 -1828.77 -21.082 21.082 0.71 0.00312437 0.00286081 0.500918 0.449484 70 19744 46 1.21132e+07 4.08187e+06 1.08614e+06 4242.72 28.75 1.43478 1.30407 15157 17 2982 6298 3879328 885356 25.2099 25.2099 -2225.73 -25.2099 0 0 1.36713e+06 5340.37 0.23 0.59 0.0832617 0.0778227 0.008989 0.4349 0.01575 0.5493
+k6_N10_I40_Fi6_L4_frac1_ff2_C50_45nm.xml diffeq2.v common 21.58 0.04 8940 14 0.34 -1 -1 33500 -1 -1 26 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 70948 66 96 719 590 1 525 195 18 18 324 mult_36 auto 0.23 4861 0.71 0.01 16.3076 -954.778 -16.3076 16.3076 1.03 0.00278984 0.00259242 0.39248 0.358185 50 16620 34 1.57076e+07 4.17324e+06 1.01953e+06 3146.70 14.61 1.10877 1.02007 13713 19 2906 6606 4344838 1012810 20.7856 20.7856 -1198.99 -20.7856 0 0 1.31112e+06 4046.65 0.33 1.00 0.148999 0.14 0.009779 0.3559 0.0173 0.6268
+k6_N10_I40_Fi6_L4_frac1_ff2_C50_45nm.xml LU8PEEng.v common 1848.75 22.27 228312 129 262.04 -1 -1 100756 -1 -1 1931 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 635892 114 102 29578 29304 1 15700 2199 53 53 2809 clb auto 49.89 225072 44.22 0.27 79.7482 -53662.3 -79.7482 79.7482 22.72 0.0577289 0.0493312 8.97813 6.64711 168 615510 28 1.63647e+08 1.31353e+08 2.92703e+07 10420.2 1301.49 41.5083 31.9873 549504 16 49547 197300 136958100 29382170 96.2771 96.2771 -68506.9 -96.2771 -31.4171 -0.218703 3.70036e+07 13173.2 12.97 31.33 3.49495 2.91458 0.1325 0.5347 0.008424 0.4568
+k6_N10_I40_Fi6_L4_frac1_ff2_C50_45nm.xml LU32PEEng.v common 14203.76 175.45 771272 128 1432.87 -1 -1 298588 -1 -1 6828 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2173456 114 102 102506 101104 1 55088 7243 98 98 9604 clb auto 150.68 1053161 446.20 2.37 75.9828 -350067 -75.9828 75.9828 93.28 0.249134 0.208398 41.3294 31.2857 208 2445105 23 5.9175e+08 4.7214e+08 1.24633e+08 12977.2 11178.35 157.904 120.938 2231165 13 151860 657627 745449231 176111355 94.2666 94.2666 -514827 -94.2666 -43.1526 -0.296573 1.58049e+08 16456.6 71.18 249.48 14.0015 11.804 0.5222 0.5668 0.007891 0.4253
+k6_N10_I40_Fi6_L4_frac1_ff2_C50_45nm.xml mcml.v common 17186.82 69.55 954628 75 9350.91 -1 -1 447768 -1 -1 7266 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2182320 36 33 134466 132924 1 42740 7521 101 101 10201 clb auto 79.19 532575 276.75 1.64 62.843 -351887 -62.843 62.843 111.90 0.182607 0.153132 35.1155 27.2751 150 1328268 29 6.22828e+08 4.8938e+08 9.79930e+07 9606.21 6661.17 130.691 104.074 1164821 13 120290 392938 269257515 58825755 76.1097 76.1097 -504016 -76.1097 -0.221087 -0.0281893 1.24539e+08 12208.5 50.78 66.14 9.44976 8.15813 0.3942 0.5027 0.01109 0.4862
+k6_N10_I40_Fi6_L4_frac1_ff2_C50_45nm.xml mkDelayWorker32B.v common 88.57 1.18 79580 5 7.53 -1 -1 52456 -1 -1 456 506 47 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 326248 506 553 3285 3838 1 3022 1562 50 50 2500 memory auto 3.13 14583 5.24 0.04 6.87843 -1774.21 -6.87843 6.87843 19.76 0.0125672 0.0114185 2.66717 2.39512 38 26091 18 1.47946e+08 5.03323e+07 6.86584e+06 2746.33 28.49 7.31081 6.71023 25045 8 2659 3435 4804882 1239432 8.23991 8.23991 -2219.69 -8.23991 -6.01834 -0.341744 8.69095e+06 3476.38 4.24 1.84 0.652182 0.610408 0.1633 0.1433 0.03628 0.8204
+k6_N10_I40_Fi6_L4_frac1_ff2_C50_45nm.xml mkPktMerge.v common 21.04 0.14 17692 2 0.11 -1 -1 33744 -1 -1 26 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 91212 311 156 972 1128 1 953 508 28 28 784 memory auto 0.34 8145 0.87 0.01 3.80364 -4523.44 -3.80364 3.80364 2.19 0.00283045 0.00241227 0.384751 0.323857 34 17357 26 4.25198e+07 9.62124e+06 1.87146e+06 2387.06 11.94 1.28537 1.12307 15960 12 3009 3458 3775452 992131 4.09331 4.09331 -5171.69 -4.09331 -7.75585 -0.321515 2.30233e+06 2936.64 0.59 0.66 0.0988964 0.0903047 0.0958 0.1566 0.01597 0.8274
+k6_N10_I40_Fi6_L4_frac1_ff2_C50_45nm.xml mkSMAdapter4B.v common 64.98 0.29 32604 7 3.82 -1 -1 37880 -1 -1 168 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 84920 193 205 2232 2437 1 1223 571 20 20 400 memory auto 0.81 9294 1.64 0.02 4.82535 -2874.56 -4.82535 4.82535 1.09 0.00318735 0.00250898 0.584736 0.470169 78 34993 35 2.07112e+07 1.17942e+07 1.91499e+06 4787.49 50.34 1.90945 1.60709 26936 13 4558 11706 6771652 1464847 6.10522 6.10522 -3548.2 -6.10522 -10.6665 -0.341744 2.42570e+06 6064.25 0.48 1.06 0.147788 0.135223 0.03149 0.2849 0.02651 0.6885
+k6_N10_I40_Fi6_L4_frac1_ff2_C50_45nm.xml or1200.v common 352.55 0.60 41680 27 7.35 -1 -1 43952 -1 -1 246 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 123076 385 394 3979 4310 1 2366 1028 27 27 729 io auto 2.97 30295 3.95 0.04 13.8312 -12859.3 -13.8312 13.8312 2.53 0.0092945 0.00850739 1.29158 1.0546 116 101154 41 3.93038e+07 1.47499e+07 5.20725e+06 7143.01 314.44 5.27442 4.58258 79962 13 9855 36891 26262090 5104992 17.0515 17.0515 -15500.7 -17.0515 0 0 6.55757e+06 8995.30 1.59 5.71 0.427452 0.383575 0.02935 0.5252 0.02457 0.4502
+k6_N10_I40_Fi6_L4_frac1_ff2_C50_45nm.xml raygentop.v common 89.79 0.42 33804 8 1.47 -1 -1 40572 -1 -1 121 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 87404 214 305 2625 2741 1 1456 649 22 22 484 mult_36 auto 3.04 12549 2.34 0.03 4.59873 -2560.69 -4.59873 4.59873 1.89 0.00829957 0.00694827 0.957219 0.813357 76 43236 43 2.50602e+07 1.00852e+07 2.31597e+06 4785.06 67.12 2.61156 2.28936 35041 12 6103 14770 10992040 2285646 5.9043 5.9043 -3479.99 -5.9043 0 0 2.89712e+06 5985.79 1.00 2.84 0.304826 0.281322 0.0292 0.5238 0.03433 0.4419
+k6_N10_I40_Fi6_L4_frac1_ff2_C50_45nm.xml sha.v common 701.11 1.14 38824 20 607.97 -1 -1 95336 -1 -1 229 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 97704 38 36 3404 3440 1 1277 303 20 20 400 clb auto 2.13 13877 1.40 0.01 13.7761 -4732.37 -13.7761 13.7761 0.83 0.00447009 0.00323393 0.580649 0.41538 112 57890 47 2.07112e+07 1.23417e+07 2.64871e+06 6621.77 71.65 3.3727 2.78766 46666 11 4727 21033 10060608 2250760 17.2865 17.2865 -5850.3 -17.2865 0 0 3.36057e+06 8401.42 0.71 1.70 0.216286 0.190174 0.01556 0.5144 0.02689 0.4588
+k6_N10_I40_Fi6_L4_frac1_ff2_C55_45nm.xml bgm.v common 1958.69 24.54 393428 22 456.66 -1 -1 152548 -1 -1 2534 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 763248 257 32 32168 31683 1 18723 2834 61 61 3721 clb auto 43.11 239755 65.51 0.48 16.4175 -23807.7 -16.4175 16.4175 31.07 0.076182 0.0544202 9.53742 6.9849 152 787984 32 2.18169e+08 1.40926e+08 3.55240e+07 9546.88 1161.04 42.8654 33.3509 710020 14 70459 324898 186918153 37742776 20.1027 20.1027 -27894.2 -20.1027 0 0 4.49650e+07 12084.1 16.27 36.52 3.7091 3.15911 0.2519 0.5508 0.02015 0.429
+k6_N10_I40_Fi6_L4_frac1_ff2_C55_45nm.xml blob_merge.v common 319.60 0.68 60292 18 78.32 -1 -1 67704 -1 -1 550 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 196472 36 100 6600 6700 1 2876 686 30 30 900 clb auto 3.67 45810 7.49 0.04 9.82067 -2769.11 -9.82067 9.82067 2.56 0.0116136 0.00998557 3.18115 2.34251 130 164406 35 4.8774e+07 2.96417e+07 7.12551e+06 7917.24 197.84 8.90349 7.06615 135917 11 10569 59122 34567969 6775636 12.2752 12.2752 -3228.41 -12.2752 0 0 9.04054e+06 10045.0 2.17 6.44 0.616131 0.544709 0.03682 0.4836 0.03583 0.4805
+k6_N10_I40_Fi6_L4_frac1_ff2_C55_45nm.xml boundtop.v common 8.28 0.79 47856 2 0.49 -1 -1 36984 -1 -1 84 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 69944 114 192 455 647 1 308 390 13 13 169 clb auto 0.11 732 0.48 0.00 2.02143 -236.158 -2.02143 2.02143 0.37 0.0011349 0.000981705 0.148042 0.128819 38 3291 34 6.63067e+06 4.5271e+06 384612. 2275.81 2.79 0.525306 0.469014 2793 12 757 1028 265851 86690 2.41145 2.41145 -294.624 -2.41145 0 0 489150. 2894.38 0.12 0.10 0.0365271 0.0336783 0.009067 0.4484 0.07213 0.4795
+k6_N10_I40_Fi6_L4_frac1_ff2_C55_45nm.xml ch_intrinsics.v common 4.50 0.06 10048 3 0.21 -1 -1 36132 -1 -1 68 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 71132 99 130 363 493 1 256 298 12 12 144 clb auto 0.10 734 0.40 0.00 2.09818 -221.105 -2.09818 2.09818 0.32 0.000702193 0.000600952 0.112103 0.0950978 44 2666 13 5.66058e+06 4.21279e+06 360780. 2505.42 1.72 0.361438 0.316885 2312 7 409 530 157968 48702 2.84334 2.84334 -270.116 -2.84334 0 0 470765. 3269.20 0.11 0.05 0.0177798 0.0163168 0.009588 0.3017 0.05812 0.6402
+k6_N10_I40_Fi6_L4_frac1_ff2_C55_45nm.xml diffeq1.v common 23.15 0.05 9768 15 0.44 -1 -1 34624 -1 -1 39 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 70912 162 96 999 932 1 698 302 16 16 256 mult_36 auto 0.34 5258 0.48 0.01 20.7832 -1825.6 -20.7832 20.7832 0.71 0.00186406 0.00163124 0.206352 0.184743 68 20443 44 1.21132e+07 4.08187e+06 1.06067e+06 4143.25 16.72 0.883653 0.803719 15407 15 3155 6441 4546750 1016552 25.0838 25.0838 -2188.51 -25.0838 0 0 1.31810e+06 5148.84 0.25 0.71 0.0816738 0.076554 0.009104 0.4245 0.01497 0.5605
+k6_N10_I40_Fi6_L4_frac1_ff2_C55_45nm.xml diffeq2.v common 24.31 0.04 8936 14 0.33 -1 -1 33512 -1 -1 26 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 70844 66 96 719 590 1 525 195 18 18 324 mult_36 auto 0.21 4955 0.39 0.00 16.4362 -955.472 -16.4362 16.4362 0.62 0.00143363 0.00132455 0.200964 0.18292 48 17541 31 1.57076e+07 4.17324e+06 988393. 3050.59 18.91 0.796619 0.731571 14024 21 3097 6985 5462161 1491596 20.7412 20.7412 -1210.1 -20.7412 0 0 1.26510e+06 3904.63 0.23 0.89 0.0850416 0.0798925 0.00991 0.3475 0.0174 0.6351
+k6_N10_I40_Fi6_L4_frac1_ff2_C55_45nm.xml LU8PEEng.v common 1945.36 22.00 228340 129 268.54 -1 -1 100808 -1 -1 1931 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 634628 114 102 29578 29304 1 15693 2199 53 53 2809 clb auto 39.70 228856 60.81 0.54 78.6814 -56221 -78.6814 78.6814 22.70 0.127809 0.0978795 12.6622 9.37604 176 615601 25 1.63647e+08 1.31353e+08 3.06070e+07 10896.1 1374.22 45.106 34.7462 549637 14 45648 182878 137157805 28322292 94.9766 94.9766 -70927 -94.9766 -8.80329 -0.17368 3.84485e+07 13687.6 15.30 30.86 3.3477 2.82069 0.1387 0.5278 0.008341 0.4638
+k6_N10_I40_Fi6_L4_frac1_ff2_C55_45nm.xml LU32PEEng.v common 19874.12 167.95 771296 128 1498.83 -1 -1 298512 -1 -1 6828 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2173768 114 102 102506 101104 1 55207 7243 98 98 9604 clb auto 147.08 1057775 462.82 2.34 75.4472 -349461 -75.4472 75.4472 99.45 0.249854 0.209041 43.7241 32.6462 210 2471323 42 5.9175e+08 4.7214e+08 1.25674e+08 13085.6 16806.41 187.595 146.514 2212334 14 150597 641666 715850979 169750584 92.942 92.942 -494156 -92.942 -39.597 -0.29436 1.59239e+08 16580.5 70.27 214.38 13.0826 11.0948 0.5385 0.553 0.007787 0.4392
+k6_N10_I40_Fi6_L4_frac1_ff2_C55_45nm.xml mcml.v common 16331.82 74.76 954784 75 9035.07 -1 -1 447768 -1 -1 7274 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2185552 36 33 134466 132924 1 42758 7529 101 101 10201 clb auto 110.76 541453 288.55 1.64 60.9652 -309452 -60.9652 60.9652 111.58 0.183998 0.154241 36.1738 27.9741 150 1318509 27 6.22828e+08 4.89811e+08 9.79930e+07 9606.21 5944.37 143.672 115.001 1166413 14 119862 392784 267417323 58882474 73.4229 73.4229 -464311 -73.4229 -1.47563 -0.169253 1.24539e+08 12208.5 52.07 66.68 9.7793 8.46419 0.4086 0.4867 0.01107 0.5023
+k6_N10_I40_Fi6_L4_frac1_ff2_C55_45nm.xml mkDelayWorker32B.v common 85.76 1.24 79608 5 8.21 -1 -1 52400 -1 -1 456 506 47 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 325300 506 553 3285 3838 1 3022 1562 50 50 2500 memory auto 4.13 15266 5.10 0.03 6.42267 -1773.59 -6.42267 6.42267 19.94 0.0117629 0.0106718 2.59134 2.31941 38 26730 10 1.47946e+08 5.03323e+07 6.86584e+06 2746.33 26.54 5.97944 5.45972 25754 9 2765 3539 4066770 1040985 8.01343 8.01343 -2174.24 -8.01343 -10.0831 -0.341744 8.69095e+06 3476.38 2.60 0.97 0.373882 0.35335 0.169 0.144 0.0365 0.8195
+k6_N10_I40_Fi6_L4_frac1_ff2_C55_45nm.xml mkPktMerge.v common 24.66 0.15 17780 2 0.14 -1 -1 33644 -1 -1 26 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 91324 311 156 972 1128 1 953 508 28 28 784 memory auto 0.53 8782 1.56 0.02 3.58788 -4345.84 -3.58788 3.58788 2.63 0.00800158 0.00686423 0.780391 0.66199 40 16844 20 4.25198e+07 9.62124e+06 2.13295e+06 2720.61 13.01 1.93894 1.69071 15689 11 2557 2944 4417423 1239157 4.27644 4.27644 -5016.06 -4.27644 -17.967 -0.341744 2.67004e+06 3405.67 0.64 0.81 0.0955025 0.0874993 0.09298 0.1607 0.01696 0.8224
+k6_N10_I40_Fi6_L4_frac1_ff2_C55_45nm.xml mkSMAdapter4B.v common 85.29 0.26 32720 7 2.63 -1 -1 37876 -1 -1 168 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 84340 193 205 2232 2437 1 1223 571 20 20 400 memory auto 0.83 9132 1.58 0.01 4.8688 -2921.04 -4.8688 4.8688 0.89 0.00310634 0.00261188 0.578252 0.465447 74 36891 43 2.07112e+07 1.17942e+07 1.84064e+06 4601.60 71.88 2.39895 2.03586 29480 14 5164 13461 11115034 2281783 6.70932 6.70932 -3735.88 -6.70932 -11.9468 -0.360359 2.31067e+06 5776.69 0.45 1.73 0.154579 0.141171 0.02946 0.2847 0.02523 0.6901
+k6_N10_I40_Fi6_L4_frac1_ff2_C55_45nm.xml or1200.v common 415.20 0.63 41684 27 6.94 -1 -1 43904 -1 -1 246 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 123564 385 394 3979 4310 1 2366 1028 27 27 729 io auto 2.11 31169 3.65 0.03 14.1209 -13048.7 -14.1209 14.1209 2.01 0.00738869 0.00653574 1.17865 0.97045 118 101982 49 3.93038e+07 1.47499e+07 5.29640e+06 7265.29 381.18 5.45878 4.74583 79313 12 9626 35736 24664644 4747431 16.9489 16.9489 -15908.5 -16.9489 0 0 6.69984e+06 9190.45 1.63 4.70 0.404083 0.366847 0.03031 0.5176 0.02423 0.4581
+k6_N10_I40_Fi6_L4_frac1_ff2_C55_45nm.xml raygentop.v common 75.61 0.33 33884 8 1.39 -1 -1 40572 -1 -1 121 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 87628 214 305 2625 2741 1 1454 649 22 22 484 mult_36 auto 2.31 12570 1.39 0.01 4.59762 -2606.33 -4.59762 4.59762 1.12 0.00333279 0.00289533 0.485057 0.412808 74 42955 42 2.50602e+07 1.00852e+07 2.27291e+06 4696.10 59.91 1.85608 1.62925 36127 16 6247 14518 13444612 2777714 5.79293 5.79293 -3617.57 -5.79293 0 0 2.85237e+06 5893.32 0.60 2.07 0.174196 0.161188 0.03006 0.5159 0.03378 0.4503
+k6_N10_I40_Fi6_L4_frac1_ff2_C55_45nm.xml sha.v common 748.89 1.18 38976 20 645.38 -1 -1 95404 -1 -1 229 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 97932 38 36 3404 3440 1 1277 303 20 20 400 clb auto 2.31 14479 3.43 0.03 13.7232 -4819.94 -13.7232 13.7232 1.37 0.0179627 0.0149677 2.05444 1.61606 116 55760 27 2.07112e+07 1.23417e+07 2.72852e+06 6821.30 77.94 4.05797 3.29197 46817 11 4945 21732 11041066 2374293 17.3752 17.3752 -6309.49 -17.3752 0 0 3.43866e+06 8596.65 1.03 2.13 0.245962 0.219344 0.01609 0.5039 0.02658 0.4695
+k6_N10_I40_Fi6_L4_frac1_ff2_C60_45nm.xml bgm.v common 1995.03 22.97 393436 22 509.58 -1 -1 152568 -1 -1 2534 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 764472 257 32 32168 31683 1 18697 2834 61 61 3721 clb auto 40.54 242630 72.88 0.47 16.7584 -24123.6 -16.7584 16.7584 32.80 0.0641848 0.0550177 10.0089 7.44237 152 783013 28 2.18169e+08 1.40926e+08 3.55240e+07 9546.88 1143.64 46.2242 36.1995 707370 15 71340 329210 190015805 38269763 21.0663 21.0663 -28162 -21.0663 0 0 4.49650e+07 12084.1 16.87 36.95 3.75568 3.17509 0.2542 0.5356 0.01929 0.4451
+k6_N10_I40_Fi6_L4_frac1_ff2_C60_45nm.xml blob_merge.v common 354.40 0.57 60332 18 92.54 -1 -1 67716 -1 -1 550 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 197028 36 100 6600 6700 1 2867 686 30 30 900 clb auto 3.69 45270 5.59 0.04 9.35511 -2782.5 -9.35511 9.35511 2.94 0.011354 0.00927873 2.13539 1.55413 128 163963 48 4.8774e+07 2.96417e+07 7.04959e+06 7832.88 218.37 8.44357 6.71235 137285 12 11127 62166 38191673 7360696 10.8141 10.8141 -3277.13 -10.8141 0 0 8.91872e+06 9909.69 2.21 8.07 0.794875 0.687919 0.03881 0.4624 0.03812 0.4995
+k6_N10_I40_Fi6_L4_frac1_ff2_C60_45nm.xml boundtop.v common 6.53 0.69 47844 2 0.36 -1 -1 37000 -1 -1 84 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 69996 114 192 455 647 1 308 390 13 13 169 clb auto 0.11 744 0.53 0.00 1.86113 -227.208 -1.86113 1.86113 0.41 0.00058864 0.000523187 0.154968 0.133588 36 3204 27 6.63067e+06 4.5271e+06 367804. 2176.36 1.39 0.363359 0.321405 2638 9 660 883 192576 63841 2.35092 2.35092 -284.657 -2.35092 0 0 456028. 2698.39 0.11 0.07 0.0254808 0.0235684 0.008972 0.4234 0.07326 0.5033
+k6_N10_I40_Fi6_L4_frac1_ff2_C60_45nm.xml ch_intrinsics.v common 3.88 0.06 10188 3 0.25 -1 -1 36112 -1 -1 68 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 71376 99 130 363 493 1 256 298 12 12 144 clb auto 0.10 734 0.42 0.00 2.09818 -220.77 -2.09818 2.09818 0.32 0.000691459 0.000590486 0.117321 0.0993926 44 2651 14 5.66058e+06 4.21279e+06 360780. 2505.42 1.15 0.272467 0.23773 2256 6 384 493 137593 42525 2.78584 2.78584 -267.915 -2.78584 0 0 470765. 3269.20 0.08 0.03 0.0109668 0.0101541 0.009836 0.2984 0.05781 0.6438
+k6_N10_I40_Fi6_L4_frac1_ff2_C60_45nm.xml diffeq1.v common 24.77 0.04 9904 15 0.35 -1 -1 34540 -1 -1 39 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 71072 162 96 999 932 1 698 302 16 16 256 mult_36 auto 0.22 5192 0.52 0.01 21.1299 -1816.09 -21.1299 21.1299 0.45 0.00174704 0.00160534 0.223058 0.200104 74 18872 28 1.21132e+07 4.08187e+06 1.13171e+06 4420.74 18.74 0.899166 0.816787 15671 16 3066 6387 5169277 1242889 26.4271 26.4271 -2240.93 -26.4271 0 0 1.42133e+06 5552.06 0.40 1.03 0.0998598 0.093511 0.009138 0.4272 0.01523 0.5576
+k6_N10_I40_Fi6_L4_frac1_ff2_C60_45nm.xml diffeq2.v common 23.07 0.04 9156 14 0.23 -1 -1 33532 -1 -1 26 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 71140 66 96 719 590 1 525 195 18 18 324 mult_36 auto 0.16 4782 0.41 0.00 16.3481 -942.152 -16.3481 16.3481 0.61 0.00143901 0.00133231 0.212862 0.193965 48 16988 39 1.57076e+07 4.17324e+06 988393. 3050.59 18.33 0.804055 0.740215 13532 20 2867 6331 4174031 963338 20.4373 20.4373 -1194.99 -20.4373 0 0 1.26510e+06 3904.63 0.23 0.62 0.081247 0.0762509 0.01008 0.3376 0.01734 0.6451
+k6_N10_I40_Fi6_L4_frac1_ff2_C60_45nm.xml LU8PEEng.v common 1992.64 19.67 228348 129 275.82 -1 -1 100800 -1 -1 1931 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 635696 114 102 29578 29304 1 15666 2199 53 53 2809 clb auto 40.17 224852 43.06 0.27 79.9594 -56094.2 -79.9594 79.9594 22.38 0.0654402 0.0465002 9.0702 6.70387 168 608775 26 1.63647e+08 1.31353e+08 2.92703e+07 10420.2 1448.84 42.1848 32.5701 543619 15 47336 187814 140026705 30445500 94.1333 94.1333 -72121.6 -94.1333 -33.0631 -0.295467 3.70036e+07 13173.2 13.25 33.30 3.65997 3.04394 0.1404 0.5046 0.008184 0.4872
+k6_N10_I40_Fi6_L4_frac1_ff2_C60_45nm.xml LU32PEEng.v common 14979.29 178.47 771300 128 1402.96 -1 -1 298616 -1 -1 6828 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2176048 114 102 102506 101104 1 55057 7243 98 98 9604 clb auto 147.65 1040183 440.18 2.37 76.0401 -343714 -76.0401 76.0401 91.47 0.288158 0.207269 41.8977 31.1641 208 2392112 36 5.9175e+08 4.7214e+08 1.24633e+08 12977.2 12002.20 179.285 139.605 2191899 15 150445 643675 725549088 172120855 92.0726 92.0726 -497969 -92.0726 -31.4946 -0.29436 1.58049e+08 16456.6 74.99 235.45 14.8804 12.332 0.5519 0.5366 0.00768 0.4557
+k6_N10_I40_Fi6_L4_frac1_ff2_C60_45nm.xml mcml.v common 16856.39 63.22 954880 75 9075.28 -1 -1 447736 -1 -1 7274 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2179852 36 33 134466 132924 1 42752 7529 101 101 10201 clb auto 79.86 514360 296.81 2.63 63.116 -325270 -63.116 63.116 102.34 0.327445 0.277983 38.2623 29.6805 152 1229510 32 6.22828e+08 4.89811e+08 9.92302e+07 9727.49 6582.39 143.143 114.413 1131243 14 118788 380356 256193256 56926173 74.3828 74.3828 -470606 -74.3828 -0.899261 -0.168146 1.25721e+08 12324.4 60.11 71.20 11.1641 9.60898 0.417 0.4773 0.01087 0.5119
+k6_N10_I40_Fi6_L4_frac1_ff2_C60_45nm.xml mkDelayWorker32B.v common 89.90 0.90 79592 5 9.97 -1 -1 52392 -1 -1 456 506 47 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 325548 506 553 3285 3838 1 3022 1562 50 50 2500 memory auto 2.92 14260 5.24 0.05 6.67507 -1882.41 -6.67507 6.67507 23.01 0.0119631 0.0107776 2.60932 2.3339 38 25950 9 1.47946e+08 5.03323e+07 6.86584e+06 2746.33 26.43 6.03018 5.50744 25043 9 2825 3802 4145306 1038457 7.7654 7.7654 -2391.88 -7.7654 -4.05384 -0.293253 8.69095e+06 3476.38 3.89 1.20 0.433556 0.409562 0.1741 0.138 0.03709 0.8249
+k6_N10_I40_Fi6_L4_frac1_ff2_C60_45nm.xml mkPktMerge.v common 19.89 0.12 17876 2 0.13 -1 -1 33672 -1 -1 26 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 91652 311 156 972 1128 1 953 508 28 28 784 memory auto 0.35 8225 0.84 0.01 3.71854 -4497.92 -3.71854 3.71854 2.09 0.00251392 0.00214994 0.373376 0.315397 40 16515 24 4.25198e+07 9.62124e+06 2.13295e+06 2720.61 10.70 1.49515 1.30953 15060 12 2348 2763 3007200 832739 4.39204 4.39204 -5064.32 -4.39204 -14.3723 -0.360359 2.67004e+06 3405.67 0.85 0.63 0.105158 0.0960549 0.09079 0.1576 0.01693 0.8255
+k6_N10_I40_Fi6_L4_frac1_ff2_C60_45nm.xml mkSMAdapter4B.v common 63.11 0.37 32812 7 3.78 -1 -1 37860 -1 -1 168 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 85892 193 205 2232 2437 1 1223 571 20 20 400 memory auto 1.25 9145 1.69 0.02 4.80903 -2865.83 -4.80903 4.80903 1.24 0.00359166 0.00281886 0.653383 0.524242 76 32343 24 2.07112e+07 1.17942e+07 1.87544e+06 4688.60 47.16 2.10035 1.77688 27875 13 4616 11770 8012168 1658521 6.57822 6.57822 -3644.99 -6.57822 -10.2069 -0.360359 2.34690e+06 5867.25 0.49 1.28 0.157013 0.14263 0.03026 0.2821 0.02518 0.6927
+k6_N10_I40_Fi6_L4_frac1_ff2_C60_45nm.xml or1200.v common 404.65 0.62 41728 27 6.49 -1 -1 43900 -1 -1 246 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 123536 385 394 3979 4310 1 2366 1028 27 27 729 io auto 3.24 30603 5.22 0.03 14.2564 -12660.8 -14.2564 14.2564 1.99 0.00745587 0.00666751 1.87905 1.59336 118 99510 42 3.93038e+07 1.47499e+07 5.29640e+06 7265.29 366.09 5.43879 4.70605 78399 12 9558 34882 24203248 4709928 16.5027 16.5027 -15172.2 -16.5027 0 0 6.69984e+06 9190.45 1.60 5.05 0.59724 0.540189 0.03126 0.5047 0.02408 0.4712
+k6_N10_I40_Fi6_L4_frac1_ff2_C60_45nm.xml raygentop.v common 61.08 0.38 33840 8 1.42 -1 -1 40536 -1 -1 121 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 87380 214 305 2625 2741 1 1452 649 22 22 484 mult_36 auto 2.00 12311 1.43 0.01 4.50956 -2594.79 -4.50956 4.50956 1.15 0.00346076 0.0030022 0.500281 0.427442 72 44035 46 2.50602e+07 1.00852e+07 2.23304e+06 4613.71 44.85 2.16676 1.91407 34493 13 5846 13425 10107392 2100337 5.679 5.679 -3438.99 -5.679 0 0 2.79798e+06 5780.96 0.90 2.07 0.200884 0.185765 0.0305 0.5001 0.03374 0.4661
+k6_N10_I40_Fi6_L4_frac1_ff2_C60_45nm.xml sha.v common 650.79 1.13 39004 20 568.80 -1 -1 95400 -1 -1 229 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 97796 38 36 3404 3440 1 1277 303 20 20 400 clb auto 1.44 14208 1.40 0.01 13.7159 -4602.28 -13.7159 13.7159 0.85 0.00374052 0.00310486 0.563497 0.422817 112 57072 46 2.07112e+07 1.23417e+07 2.64871e+06 6621.77 62.27 2.72799 2.21775 45650 11 4495 19432 9309276 2053502 17.7864 17.7864 -5633.75 -17.7864 0 0 3.36057e+06 8401.42 0.74 1.57 0.222923 0.196658 0.01628 0.4841 0.02502 0.4908
+k6_N10_I40_Fi6_L4_frac0_ff1_C5_45nm.xml bgm.v common 2281.73 22.68 392656 22 465.65 -1 -1 152660 -1 -1 3338 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 824444 257 32 32168 31683 1 25139 3638 69 69 4761 clb auto 67.65 294050 116.82 0.71 20.2333 -26592.7 -20.2333 20.2333 34.90 0.0683214 0.0583877 10.9574 8.2736 152 1052588 34 2.85477e+08 1.84252e+08 4.33225e+07 9099.45 1365.71 44.0519 34.4872 941083 15 89421 417652 243506617 48780010 24.5115 24.5115 -32662.5 -24.5115 0 0 5.48310e+07 11516.7 24.04 49.45 4.07637 3.4471 0.2038 0.7946 0.02372 0.1817
+k6_N10_I40_Fi6_L4_frac0_ff1_C5_45nm.xml blob_merge.v common 461.75 0.64 59416 18 87.96 -1 -1 67620 -1 -1 690 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 211108 36 100 6600 6700 1 4671 826 33 33 1089 clb auto 5.47 56977 7.06 0.05 11.1981 -3132.03 -11.1981 11.1981 3.73 0.0113991 0.00975974 1.78615 1.3669 152 224663 28 6.0475e+07 3.7187e+07 9.49613e+06 8720.04 323.86 7.354 5.95282 190240 11 14366 82101 46991793 9189211 15.7788 15.7788 -4065.62 -15.7788 0 0 1.20221e+07 11039.6 3.16 8.29 0.624391 0.54352 0.03196 0.7427 0.04233 0.2149
+k6_N10_I40_Fi6_L4_frac0_ff1_C5_45nm.xml boundtop.v common 7.84 0.66 47100 2 0.41 -1 -1 37032 -1 -1 89 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 66636 114 192 455 647 1 342 395 14 14 196 clb auto 0.05 812 0.39 0.00 2.07906 -249.009 -2.07906 2.07906 0.32 0.000582259 0.000520372 0.102023 0.089462 46 4448 34 9.20055e+06 4.79657e+06 528560. 2696.73 3.50 0.297348 0.265702 3640 11 713 1320 349224 110932 2.89703 2.89703 -340.823 -2.89703 0 0 678085. 3459.62 0.14 0.10 0.0290096 0.0267707 0.006865 0.6113 0.105 0.2838
+k6_N10_I40_Fi6_L4_frac0_ff1_C5_45nm.xml ch_intrinsics.v common 6.53 0.06 9384 3 0.25 -1 -1 36108 -1 -1 71 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 68268 99 130 363 493 1 284 301 13 13 169 clb auto 0.12 707 0.42 0.00 2.51186 -246.6 -2.51186 2.51186 0.37 0.000702534 0.000609273 0.12072 0.103641 44 4247 48 6.63067e+06 4.37447e+06 414688. 2453.77 3.60 0.359935 0.316468 3355 12 704 1339 431244 136618 3.43782 3.43782 -340.371 -3.43782 0 0 539786. 3194.00 0.10 0.07 0.0151814 0.0138453 0.007231 0.3881 0.06792 0.544
+k6_N10_I40_Fi6_L4_frac0_ff1_C5_45nm.xml diffeq1.v common 29.07 0.04 9148 15 0.45 -1 -1 34556 -1 -1 51 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 75624 162 96 999 932 1 773 314 16 16 256 mult_36 auto 0.81 5872 0.92 0.01 21.5968 -2031.48 -21.5968 21.5968 0.68 0.00357673 0.00329093 0.364673 0.325851 88 25232 41 1.21132e+07 4.72859e+06 1.25479e+06 4901.54 21.88 1.01461 0.921239 19906 14 3197 8985 5599893 1296934 26.5937 26.5937 -2606.8 -26.5937 0 0 1.57471e+06 6151.22 0.28 0.81 0.0714216 0.0667527 0.008094 0.5858 0.01954 0.3946
+k6_N10_I40_Fi6_L4_frac0_ff1_C5_45nm.xml diffeq2.v common 40.05 0.03 8352 14 0.34 -1 -1 33516 -1 -1 39 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 69652 66 96 719 590 1 604 208 18 18 324 mult_36 auto 0.43 5279 0.63 0.00 16.9147 -1003.47 -16.9147 16.9147 1.01 0.00162646 0.00151475 0.307682 0.277218 62 21205 29 1.57076e+07 4.87387e+06 1.20625e+06 3722.98 32.77 1.18114 1.08769 17367 17 3115 9020 5189770 1169161 22.0217 22.0217 -1279.44 -22.0217 0 0 1.49095e+06 4601.69 0.47 1.24 0.142017 0.134007 0.008291 0.4859 0.02152 0.4925
+k6_N10_I40_Fi6_L4_frac0_ff1_C5_45nm.xml LU8PEEng.v common 1971.89 21.68 227656 129 280.28 -1 -1 100836 -1 -1 2716 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 702476 114 102 29578 29304 1 21433 2984 63 63 3969 clb auto 57.82 260723 78.05 0.47 89.2375 -60376.9 -89.2375 89.2375 27.95 0.0697088 0.0504743 9.81979 7.28441 152 841103 37 2.36641e+08 1.73655e+08 3.60661e+07 9086.95 1334.31 38.7539 29.7483 735403 18 68892 289284 185530782 39521679 109.859 109.859 -77313.6 -109.859 -19.9409 -0.199425 4.56445e+07 11500.3 18.02 39.23 3.7957 3.12475 0.1165 0.7551 0.01055 0.2343
+k6_N10_I40_Fi6_L4_frac0_ff1_C5_45nm.xml LU32PEEng.v common 20770.29 168.31 770500 128 1454.98 -1 -1 298612 -1 -1 9378 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2417740 114 102 102506 101104 1 74378 9793 114 114 12996 clb auto 176.53 1239755 650.12 3.63 84.5408 -392812 -84.5408 84.5408 86.93 0.343225 0.291364 45.1078 34.2569 192 3156175 24 8.0032e+08 6.09554e+08 1.48288e+08 11410.3 17443.84 156.797 122.175 2883618 17 201357 884469 952443553 225546112 108.032 108.032 -568465 -108.032 -28.5311 -0.17368 1.89145e+08 14554.1 91.10 289.10 14.5034 11.9986 0.464 0.78 0.009654 0.2103
+k6_N10_I40_Fi6_L4_frac0_ff1_C5_45nm.xml mcml.v common 18501.68 72.43 954236 75 8889.13 -1 -1 447780 -1 -1 8860 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2304460 36 33 134466 132924 1 80844 9115 111 111 12321 clb auto 56.35 792443 437.96 2.63 73.9767 -318259 -73.9767 73.9767 85.60 0.199534 0.168253 36.2155 28.3592 152 2261527 28 7.58755e+08 5.75277e+08 1.13895e+08 9243.94 8244.45 175.59 142.506 2043899 15 207105 815143 457378397 101599829 93.1864 93.1864 -480312 -93.1864 -0.632332 -0.151082 1.44296e+08 11711.4 76.64 109.71 11.3303 9.90321 0.356 0.7021 0.0116 0.2863
+k6_N10_I40_Fi6_L4_frac0_ff1_C5_45nm.xml mkDelayWorker32B.v common 92.48 1.23 78904 5 12.17 -1 -1 52408 -1 -1 507 506 47 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 279148 506 553 3285 3838 1 3114 1613 50 50 2500 memory auto 4.07 15269 5.31 0.04 6.94052 -1851.9 -6.94052 6.94052 18.28 0.0116519 0.0105292 2.60439 2.32432 38 27452 12 1.47946e+08 5.3081e+07 6.57953e+06 2631.81 29.90 7.92499 7.27057 26468 8 2739 3542 4457523 1103597 7.8156 7.8156 -2233 -7.8156 -5.90413 -0.340786 8.28755e+06 3315.02 3.70 1.66 0.591155 0.555338 0.1504 0.1644 0.03351 0.8021
+k6_N10_I40_Fi6_L4_frac0_ff1_C5_45nm.xml mkPktMerge.v common 27.15 0.14 17144 2 0.12 -1 -1 33632 -1 -1 32 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 92152 311 156 972 1128 1 953 514 28 28 784 memory auto 0.46 8192 0.87 0.01 4.01588 -4397.49 -4.01588 4.01588 2.89 0.00280448 0.00237531 0.387455 0.322886 40 16777 33 4.25198e+07 9.94461e+06 2.03169e+06 2591.44 15.34 1.49214 1.29905 15541 9 2384 2963 3860029 1094330 4.41583 4.41583 -5078.52 -4.41583 -13.3788 -0.322548 2.55406e+06 3257.73 0.94 1.14 0.144896 0.132771 0.08261 0.1791 0.01831 0.8026
+k6_N10_I40_Fi6_L4_frac0_ff1_C5_45nm.xml mkSMAdapter4B.v common 75.78 0.28 32112 7 2.57 -1 -1 37852 -1 -1 195 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 84124 193 205 2232 2437 1 1463 598 20 20 400 memory auto 0.65 10505 1.97 0.01 5.23088 -3004.1 -5.23088 5.23088 0.84 0.0028374 0.00241452 0.580845 0.461695 98 48529 36 2.07112e+07 1.32493e+07 2.23557e+06 5588.92 60.86 1.85785 1.55152 37320 12 5388 18049 9401555 2061599 7.23949 7.23949 -3898.1 -7.23949 -12.591 -0.360359 2.82959e+06 7073.97 0.95 2.33 0.231074 0.208515 0.0256 0.3806 0.03321 0.5862
+k6_N10_I40_Fi6_L4_frac0_ff1_C5_45nm.xml or1200.v common 310.06 0.61 40952 27 7.70 -1 -1 43836 -1 -1 312 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 137584 385 394 3979 4310 1 2982 1094 27 27 729 io auto 3.90 34364 6.03 0.04 17.0479 -13909.9 -17.0479 17.0479 2.14 0.00758859 0.00668043 1.745 1.44303 142 119094 40 3.93038e+07 1.83069e+07 5.90641e+06 8102.08 269.90 5.94056 5.1246 96910 11 10074 42306 23622350 4801398 21.7174 21.7174 -16995.1 -21.7174 0 0 7.46783e+06 10243.9 1.84 4.00 0.33187 0.301471 0.02351 0.7365 0.02799 0.2355
+k6_N10_I40_Fi6_L4_frac0_ff1_C5_45nm.xml raygentop.v common 81.54 0.42 32964 8 1.79 -1 -1 40464 -1 -1 164 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 86136 214 305 2625 2741 1 1729 692 22 22 484 mult_36 auto 0.87 13255 1.54 0.01 4.84334 -2683.72 -4.84334 4.84334 1.08 0.00330031 0.00288975 0.444495 0.379162 86 53025 49 2.50602e+07 1.24026e+07 2.45854e+06 5079.64 64.71 1.871 1.6484 43083 12 6212 19701 11636944 2511181 7.41848 7.41848 -3699.42 -7.41848 0 0 3.09668e+06 6398.10 1.16 2.74 0.281779 0.259109 0.02195 0.6986 0.04124 0.2601
+k6_N10_I40_Fi6_L4_frac0_ff1_C5_45nm.xml sha.v common 718.73 1.11 38368 20 595.88 -1 -1 95388 -1 -1 258 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 107976 38 36 3404 3440 1 2078 332 21 21 441 clb auto 6.62 18419 2.59 0.02 14.1122 -5041.01 -14.1122 14.1122 1.28 0.00767703 0.00676749 0.907343 0.696138 144 77975 20 2.24358e+07 1.39047e+07 3.48714e+06 7907.35 93.44 3.08467 2.51764 68951 12 6881 32962 15980813 3537680 18.514 18.514 -6692.49 -18.514 0 0 4.43782e+06 10063.1 1.18 3.34 0.352333 0.311891 0.01478 0.763 0.03355 0.2035
+k6_N10_I40_Fi6_L4_frac0_ff1_C10_45nm.xml bgm.v common 1981.68 24.30 392708 22 471.31 -1 -1 152560 -1 -1 3270 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 816200 257 32 32168 31683 1 20146 3570 69 69 4761 clb auto 36.31 280967 95.68 0.81 18.2229 -25633.2 -18.2229 18.2229 34.42 0.0868261 0.0748478 10.1579 7.49014 142 958660 32 2.85477e+08 1.80588e+08 4.07781e+07 8565.02 1114.11 46.7976 36.5667 852529 14 83162 416536 245464913 48585857 21.9363 21.9363 -30138.9 -21.9363 0 0 5.15692e+07 10831.6 24.50 52.20 4.11325 3.47581 0.2107 0.7563 0.02487 0.2188
+k6_N10_I40_Fi6_L4_frac0_ff1_C10_45nm.xml blob_merge.v common 443.62 0.63 59436 18 88.29 -1 -1 67808 -1 -1 681 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 197908 36 100 6600 6700 1 3018 817 33 33 1089 clb auto 2.52 50373 8.14 0.06 10.3692 -2871.63 -10.3692 10.3692 3.08 0.0165274 0.0116548 2.67705 1.93499 132 197738 34 6.0475e+07 3.67019e+07 8.33594e+06 7654.68 308.73 10.2079 8.13539 165839 11 10780 74329 44852265 8668130 12.802 12.802 -3400.87 -12.802 0 0 1.06727e+07 9800.45 3.23 8.38 0.712769 0.630493 0.03103 0.6842 0.04791 0.2679
+k6_N10_I40_Fi6_L4_frac0_ff1_C10_45nm.xml boundtop.v common 12.07 0.79 47164 2 0.55 -1 -1 37116 -1 -1 89 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 66668 114 192 455 647 1 311 395 14 14 196 clb auto 0.08 930 0.55 0.00 1.88034 -233.427 -1.88034 1.88034 0.49 0.000873767 0.000771858 0.145437 0.125325 38 4047 21 9.20055e+06 4.79657e+06 447211. 2281.69 6.31 0.691461 0.620246 3340 8 701 1056 311152 92024 2.90621 2.90621 -343.955 -2.90621 0 0 565754. 2886.50 0.15 0.10 0.0286688 0.0264962 0.006578 0.5868 0.09872 0.3145
+k6_N10_I40_Fi6_L4_frac0_ff1_C10_45nm.xml ch_intrinsics.v common 3.98 0.05 9392 3 0.19 -1 -1 36076 -1 -1 70 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 68600 99 130 363 493 1 265 300 12 12 144 clb auto 0.07 709 0.25 0.00 2.29874 -240.511 -2.29874 2.29874 0.22 0.0004315 0.000374129 0.0704989 0.0606851 46 2929 11 5.66058e+06 4.32058e+06 363034. 2521.07 1.80 0.21618 0.189986 2711 11 518 901 297609 96984 3.41001 3.41001 -320.418 -3.41001 0 0 465254. 3230.93 0.08 0.05 0.0143768 0.0131649 0.007018 0.3893 0.06744 0.5432
+k6_N10_I40_Fi6_L4_frac0_ff1_C10_45nm.xml diffeq1.v common 32.61 0.04 9212 15 0.45 -1 -1 34560 -1 -1 52 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 75508 162 96 999 932 1 713 315 16 16 256 mult_36 auto 0.36 5702 1.09 0.01 20.7095 -1863.94 -20.7095 20.7095 0.72 0.00341323 0.00313096 0.498806 0.445285 72 23281 47 1.21132e+07 4.78249e+06 1.05993e+06 4140.35 25.05 1.2958 1.177 18424 20 3308 8519 6507204 1408576 26.5698 26.5698 -2248.09 -26.5698 0 0 1.33020e+06 5196.10 0.29 1.34 0.145531 0.136228 0.00765 0.5427 0.018 0.4393
+k6_N10_I40_Fi6_L4_frac0_ff1_C10_45nm.xml diffeq2.v common 23.59 0.03 8480 14 0.30 -1 -1 33564 -1 -1 39 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 69652 66 96 719 590 1 574 208 18 18 324 mult_36 auto 0.34 5133 0.81 0.01 16.321 -962.345 -16.321 16.321 0.96 0.00272657 0.00252846 0.426492 0.389514 54 20665 32 1.57076e+07 4.87387e+06 1.04128e+06 3213.83 16.96 1.038 0.953783 16782 19 3189 8341 5887262 1401400 22.2471 22.2471 -1236.31 -22.2471 0 0 1.35235e+06 4173.92 0.26 0.90 0.0777978 0.0730403 0.008136 0.4578 0.02085 0.5213
+k6_N10_I40_Fi6_L4_frac0_ff1_C10_45nm.xml LU8PEEng.v common 1744.42 21.54 227656 129 270.93 -1 -1 100796 -1 -1 2685 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 682996 114 102 29578 29304 1 16509 2953 62 62 3844 clb auto 34.79 244313 60.17 0.48 83.1736 -58593.8 -83.1736 83.1736 32.13 0.0947149 0.0807948 9.16563 6.90021 138 749786 22 2.30929e+08 1.71985e+08 3.19661e+07 8315.85 1163.19 38.742 29.7298 644081 19 55684 246650 159255439 34199613 103.769 103.769 -79272 -103.769 -19.9205 -0.293253 4.08164e+07 10618.2 15.44 36.08 4.01795 3.27139 0.1111 0.7025 0.01103 0.2865
+k6_N10_I40_Fi6_L4_frac0_ff1_C10_45nm.xml LU32PEEng.v common 14428.64 163.55 770676 128 1495.21 -1 -1 298588 -1 -1 9259 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2328120 114 102 102506 101104 1 57713 9674 114 114 12996 clb auto 110.55 1165996 583.41 3.20 82.3092 -391735 -82.3092 82.3092 86.06 0.256542 0.216432 43.0849 32.2098 178 2850216 18 8.0032e+08 6.03142e+08 1.39158e+08 10707.8 11238.79 148.565 114.737 2575079 15 162654 767909 776325022 181480079 100.375 100.375 -571125 -100.375 -22.1043 -0.178108 1.76092e+08 13549.7 83.90 231.76 13.868 11.5439 0.4537 0.7348 0.01012 0.255
+k6_N10_I40_Fi6_L4_frac0_ff1_C10_45nm.xml mcml.v common 15683.23 66.81 954360 75 8818.80 -1 -1 447700 -1 -1 8825 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2200316 36 33 134466 132924 1 49795 9080 111 111 12321 clb auto 42.55 661229 365.42 2.47 66.4892 -332742 -66.4892 66.4892 83.41 0.219782 0.164521 34.4245 26.5613 138 1653478 37 7.58755e+08 5.73391e+08 1.04356e+08 8469.79 5645.00 157.283 126.649 1466594 13 140482 567955 342772356 75252717 78.3282 78.3282 -493718 -78.3282 -1.32699 -0.171467 1.33104e+08 10803.0 67.36 86.82 10.6641 9.22867 0.3501 0.6419 0.01302 0.345
+k6_N10_I40_Fi6_L4_frac0_ff1_C10_45nm.xml mkDelayWorker32B.v common 99.13 1.14 78980 5 9.87 -1 -1 52396 -1 -1 506 506 47 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 278196 506 553 3285 3838 1 3021 1612 50 50 2500 memory auto 4.11 15660 6.45 0.06 6.78225 -1858.54 -6.78225 6.78225 17.87 0.0203515 0.0184348 3.19745 2.87035 38 27530 16 1.47946e+08 5.30271e+07 6.57953e+06 2631.81 39.39 9.68668 8.84959 26490 9 2797 3827 4714428 1200010 7.95858 7.95858 -2257.8 -7.95858 -5.49343 -0.293253 8.28755e+06 3315.02 2.59 1.18 0.388751 0.366559 0.1495 0.163 0.03417 0.8029
+k6_N10_I40_Fi6_L4_frac0_ff1_C10_45nm.xml mkPktMerge.v common 32.57 0.14 17092 2 0.11 -1 -1 33740 -1 -1 32 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 93196 311 156 972 1128 1 953 514 28 28 784 memory auto 0.45 7968 1.47 0.01 3.69944 -4324.1 -3.69944 3.69944 3.10 0.00466014 0.00406786 0.705527 0.601981 40 16513 36 4.25198e+07 9.94461e+06 2.03169e+06 2591.44 19.75 2.72158 2.40445 15105 13 2724 3142 3983810 1137818 4.0026 4.0026 -5033.75 -4.0026 -13.3588 -0.360359 2.55406e+06 3257.73 1.00 1.17 0.180596 0.165602 0.0908 0.1726 0.01834 0.809
+k6_N10_I40_Fi6_L4_frac0_ff1_C10_45nm.xml mkSMAdapter4B.v common 58.73 0.35 32112 7 3.91 -1 -1 37944 -1 -1 191 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 84076 193 205 2232 2437 1 1259 594 20 20 400 memory auto 0.61 9623 1.74 0.02 5.46598 -2925.29 -5.46598 5.46598 0.84 0.00313829 0.00245404 0.567049 0.448317 84 39008 44 2.07112e+07 1.30338e+07 1.94758e+06 4868.95 43.72 2.15511 1.8276 30888 12 4522 14009 8214808 1778113 6.50783 6.50783 -3651.77 -6.50783 -7.85036 -0.339827 2.47633e+06 6190.83 0.52 1.31 0.139932 0.127244 0.02706 0.3443 0.03167 0.624
+k6_N10_I40_Fi6_L4_frac0_ff1_C10_45nm.xml or1200.v common 316.66 0.57 41052 27 5.76 -1 -1 43712 -1 -1 308 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 136560 385 394 3979 4310 1 2434 1090 27 27 729 io auto 1.97 33090 5.74 0.03 15.4917 -13809.5 -15.4917 15.4917 1.97 0.00729116 0.00647135 2.02649 1.63392 118 110351 49 3.93038e+07 1.80914e+07 5.02598e+06 6894.35 283.79 5.3087 4.53409 89952 12 9595 41302 26767174 5237030 17.8749 17.8749 -15940.9 -17.8749 0 0 6.34295e+06 8700.89 1.67 4.74 0.366706 0.335036 0.0235 0.6791 0.02975 0.2911
+k6_N10_I40_Fi6_L4_frac0_ff1_C10_45nm.xml raygentop.v common 75.76 0.40 33036 8 2.14 -1 -1 40532 -1 -1 162 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 86280 214 305 2625 2741 1 1527 690 22 22 484 mult_36 auto 0.61 12468 1.45 0.01 4.59189 -2638.47 -4.59189 4.59189 1.11 0.00323794 0.00285625 0.448118 0.382734 76 44335 41 2.50602e+07 1.22948e+07 2.20614e+06 4558.14 60.28 2.13026 1.87899 38878 11 5755 16332 11476385 2386190 6.70944 6.70944 -3532.18 -6.70944 0 0 2.75166e+06 5685.24 0.61 1.70 0.135715 0.126069 0.02216 0.6593 0.03995 0.3007
+k6_N10_I40_Fi6_L4_frac0_ff1_C10_45nm.xml sha.v common 723.01 1.12 38260 20 568.48 -1 -1 95304 -1 -1 256 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 103040 38 36 3404 3440 1 1436 330 21 21 441 clb auto 1.58 16356 1.66 0.01 14.3182 -4905.74 -14.3182 14.3182 0.94 0.00392214 0.00316205 0.597509 0.432195 118 70864 46 2.24358e+07 1.37969e+07 2.92809e+06 6639.66 134.29 3.32961 2.70469 57449 14 5299 28312 13515451 2991376 18.5119 18.5119 -6208.32 -18.5119 0 0 3.69794e+06 8385.36 0.85 2.26 0.231614 0.204987 0.01307 0.7054 0.03268 0.2619
+k6_N10_I40_Fi6_L4_frac0_ff1_C15_45nm.xml bgm.v common 2151.57 23.76 392828 22 498.48 -1 -1 152600 -1 -1 3240 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 815448 257 32 32168 31683 1 19418 3540 69 69 4761 clb auto 16.70 270978 83.45 0.54 18.4609 -25389.5 -18.4609 18.4609 36.17 0.0675762 0.0572145 9.36221 6.86831 138 945313 38 2.85477e+08 1.78971e+08 3.96548e+07 8329.09 1301.68 47.0176 36.5827 827477 14 76304 385449 226586282 45117460 21.9143 21.9143 -29828.8 -21.9143 0 0 5.06308e+07 10634.5 24.13 43.20 3.73799 3.17621 0.2135 0.7278 0.02466 0.2475
+k6_N10_I40_Fi6_L4_frac0_ff1_C15_45nm.xml blob_merge.v common 437.10 0.60 59596 18 80.33 -1 -1 67808 -1 -1 683 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 197064 36 100 6600 6700 1 2864 819 33 33 1089 clb auto 2.23 49848 6.14 0.04 10.1322 -2884.21 -10.1322 10.1322 3.10 0.0117248 0.00994779 1.83068 1.35606 126 193459 40 6.0475e+07 3.68097e+07 8.03854e+06 7381.58 309.02 7.16241 5.73282 161126 10 10608 73825 45215995 8664299 13.4181 13.4181 -3482.56 -13.4181 0 0 1.01559e+07 9325.91 2.95 7.92 0.58295 0.508103 0.03073 0.6579 0.04523 0.2969
+k6_N10_I40_Fi6_L4_frac0_ff1_C15_45nm.xml boundtop.v common 8.88 0.80 47212 2 0.46 -1 -1 37116 -1 -1 89 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 66776 114 192 455 647 1 308 395 14 14 196 clb auto 0.05 789 0.35 0.00 1.77187 -235.149 -1.77187 1.77187 0.32 0.000577249 0.000515778 0.0949392 0.082893 38 3884 22 9.20055e+06 4.79657e+06 447211. 2281.69 4.10 0.336645 0.300579 3145 10 656 1177 375935 114427 2.50294 2.50294 -305.323 -2.50294 0 0 565754. 2886.50 0.10 0.07 0.0179895 0.0165678 0.007558 0.5734 0.09959 0.327
+k6_N10_I40_Fi6_L4_frac0_ff1_C15_45nm.xml ch_intrinsics.v common 6.63 0.05 9584 3 0.31 -1 -1 36164 -1 -1 70 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 68296 99 130 363 493 1 256 300 12 12 144 clb auto 0.07 695 0.38 0.00 2.15461 -226.261 -2.15461 2.15461 0.30 0.0007176 0.000619329 0.111941 0.09547 38 3020 19 5.66058e+06 4.32058e+06 306247. 2126.71 3.82 0.517388 0.457531 2620 8 558 808 246082 81493 2.81025 2.81025 -279.783 -2.81025 0 0 388532. 2698.14 0.10 0.08 0.0213342 0.0195738 0.008071 0.3567 0.06417 0.5791
+k6_N10_I40_Fi6_L4_frac0_ff1_C15_45nm.xml diffeq1.v common 28.87 0.04 9300 15 0.41 -1 -1 34536 -1 -1 52 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 75316 162 96 999 932 1 707 315 16 16 256 mult_36 auto 0.21 5641 0.50 0.01 21.7222 -1890.26 -21.7222 21.7222 0.61 0.0016608 0.00150984 0.193465 0.172852 72 22193 50 1.21132e+07 4.78249e+06 1.05993e+06 4140.35 22.76 0.965283 0.876562 17289 17 3065 7473 5311022 1207355 25.9379 25.9379 -2283.81 -25.9379 0 0 1.33020e+06 5196.10 0.24 0.78 0.0812727 0.0759107 0.007795 0.521 0.01804 0.461
+k6_N10_I40_Fi6_L4_frac0_ff1_C15_45nm.xml diffeq2.v common 29.20 0.03 8424 14 0.31 -1 -1 33496 -1 -1 37 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 70092 66 96 719 590 1 555 206 18 18 324 mult_36 auto 0.16 4993 0.64 0.00 16.6977 -969.16 -16.6977 16.6977 0.99 0.00143044 0.00132251 0.325292 0.294315 52 19763 48 1.57076e+07 4.76608e+06 1.00459e+06 3100.59 21.85 0.827266 0.756881 15409 22 3313 8360 6201648 1644270 20.8227 20.8227 -1253.76 -20.8227 0 0 1.32187e+06 4079.86 0.39 1.62 0.172862 0.162597 0.008494 0.4307 0.02092 0.5484
+k6_N10_I40_Fi6_L4_frac0_ff1_C15_45nm.xml LU8PEEng.v common 1821.87 21.36 227780 129 270.12 -1 -1 100720 -1 -1 2658 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 675032 114 102 29578 29304 1 15924 2926 62 62 3844 clb auto 14.49 243914 61.73 0.36 83.2025 -59914.5 -83.2025 83.2025 26.75 0.0570209 0.0479302 9.91534 7.09909 140 708455 18 2.30929e+08 1.7053e+08 3.24087e+07 8430.99 1252.26 39.1591 29.8926 621108 16 50140 222263 151628180 32075032 102.358 102.358 -77819.4 -102.358 -34.3926 -0.17368 4.12077e+07 10720.0 15.96 42.48 6.06395 5.023 0.1155 0.6765 0.01086 0.3126
+k6_N10_I40_Fi6_L4_frac0_ff1_C15_45nm.xml LU32PEEng.v common 15450.98 170.87 770640 128 1481.67 -1 -1 298332 -1 -1 9204 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2283192 114 102 102506 101104 1 55621 9619 113 113 12769 clb auto 46.66 1166516 572.93 3.10 85.2975 -389011 -85.2975 85.2975 88.50 0.290424 0.210154 42.8792 31.5365 176 2769173 16 7.84268e+08 6.00178e+08 1.35281e+08 10594.5 12346.59 154.139 119.037 2546640 16 159708 754941 872444226 210350568 101.036 101.036 -555541 -101.036 -19.8643 -0.172573 1.70161e+08 13326.1 62.34 266.02 13.8269 11.5772 0.459 0.7085 0.009747 0.2817
+k6_N10_I40_Fi6_L4_frac0_ff1_C15_45nm.xml mcml.v common 17108.21 74.51 954372 75 8797.76 -1 -1 447688 -1 -1 8846 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2185452 36 33 134466 132924 1 47725 9101 111 111 12321 clb auto 32.09 640764 342.80 2.67 67.7406 -318533 -67.7406 67.7406 84.36 0.302517 0.253692 34.2451 26.2004 128 1583863 36 7.58755e+08 5.74523e+08 9.77457e+07 7933.26 7145.19 150.58 119.889 1445296 15 145904 573908 345174975 75250956 77.0694 77.0694 -473286 -77.0694 -0.225514 -0.0292962 1.23461e+08 10020.4 42.27 82.05 10.1597 8.63996 0.3493 0.6009 0.01292 0.3862
+k6_N10_I40_Fi6_L4_frac0_ff1_C15_45nm.xml mkDelayWorker32B.v common 78.73 0.92 78988 5 8.80 -1 -1 52568 -1 -1 503 506 47 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 278552 506 553 3285 3838 1 3017 1609 50 50 2500 memory auto 2.63 13535 4.97 0.04 6.79198 -1685.92 -6.79198 6.79198 15.77 0.0116536 0.010571 2.49574 2.23658 38 25218 16 1.47946e+08 5.28654e+07 6.57953e+06 2631.81 28.01 7.29339 6.68173 24000 8 2701 3462 3419940 802781 8.18421 8.18421 -2165.83 -8.18421 -5.24159 -0.198615 8.28755e+06 3315.02 2.68 0.78 0.333778 0.315866 0.1463 0.156 0.03471 0.8093
+k6_N10_I40_Fi6_L4_frac0_ff1_C15_45nm.xml mkPktMerge.v common 21.00 0.15 17208 2 0.12 -1 -1 33700 -1 -1 32 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 92372 311 156 972 1128 1 953 514 28 28 784 memory auto 0.45 8066 0.87 0.01 3.72933 -4305.81 -3.72933 3.72933 2.06 0.00247142 0.00209052 0.38113 0.317889 40 16725 25 4.25198e+07 9.94461e+06 2.03169e+06 2591.44 11.73 1.41352 1.22752 15222 14 2687 3183 3861280 1082033 4.02424 4.02424 -4957.23 -4.02424 -14.0534 -0.360359 2.55406e+06 3257.73 0.60 0.69 0.104236 0.0947284 0.09079 0.1721 0.01825 0.8097
+k6_N10_I40_Fi6_L4_frac0_ff1_C15_45nm.xml mkSMAdapter4B.v common 64.66 0.25 32248 7 2.57 -1 -1 37900 -1 -1 195 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 84364 193 205 2232 2437 1 1225 598 20 20 400 memory auto 0.74 9707 1.68 0.02 5.14045 -2949.42 -5.14045 5.14045 0.84 0.00297359 0.00249857 0.552685 0.443466 78 39825 42 2.07112e+07 1.32493e+07 1.82808e+06 4570.21 51.74 1.61338 1.35531 30415 12 4552 13546 8166231 1745202 6.64791 6.64791 -3674.08 -6.64791 -15.5899 -0.320482 2.31081e+06 5777.04 0.52 1.27 0.14034 0.12759 0.02663 0.3363 0.02886 0.6348
+k6_N10_I40_Fi6_L4_frac0_ff1_C15_45nm.xml or1200.v common 283.11 0.46 41060 27 4.92 -1 -1 43824 -1 -1 312 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 136308 385 394 3979 4310 1 2344 1094 27 27 729 io auto 0.97 32452 3.83 0.03 15.3477 -13978.2 -15.3477 15.3477 1.96 0.00762754 0.00670361 1.12595 0.935141 116 106095 47 3.93038e+07 1.83069e+07 4.94331e+06 6780.95 253.82 6.4681 5.61616 86537 12 9199 39008 25284583 4945174 18.4311 18.4311 -16555.7 -18.4311 0 0 6.21292e+06 8522.53 1.55 4.48 0.362619 0.329579 0.02339 0.6558 0.0287 0.3155
+k6_N10_I40_Fi6_L4_frac0_ff1_C15_45nm.xml raygentop.v common 90.18 0.40 33188 8 1.77 -1 -1 40512 -1 -1 164 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 86332 214 305 2625 2741 1 1495 692 22 22 484 mult_36 auto 0.53 12910 1.48 0.02 4.58075 -2606.6 -4.58075 4.58075 1.09 0.00354684 0.00296761 0.469497 0.399065 76 45711 46 2.50602e+07 1.24026e+07 2.20614e+06 4558.14 75.42 2.72322 2.40329 37899 14 5714 16232 11421523 2403369 6.61077 6.61077 -3679.16 -6.61077 0 0 2.75166e+06 5685.24 0.91 1.69 0.154228 0.14245 0.02276 0.6443 0.03946 0.3162
+k6_N10_I40_Fi6_L4_frac0_ff1_C15_45nm.xml sha.v common 742.57 0.80 38208 20 647.96 -1 -1 95400 -1 -1 260 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 103112 38 36 3404 3440 1 1361 334 21 21 441 clb auto 1.00 15744 2.80 0.02 14.3424 -4956.61 -14.3424 14.3424 1.44 0.00978106 0.00744359 1.18953 0.901418 118 60792 19 2.24358e+07 1.40124e+07 2.92809e+06 6639.66 71.67 3.22479 2.57396 52193 12 4647 24110 11078114 2481277 18.2753 18.2753 -5893.21 -18.2753 0 0 3.69794e+06 8385.36 0.85 1.81 0.212658 0.187335 0.0134 0.6766 0.03226 0.2911
+k6_N10_I40_Fi6_L4_frac0_ff1_C20_45nm.xml bgm.v common 2100.36 24.36 392884 22 493.69 -1 -1 152644 -1 -1 3255 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 809612 257 32 32168 31683 1 19087 3555 69 69 4761 clb auto 12.09 269406 90.69 0.63 17.4464 -25942 -17.4464 17.4464 34.69 0.076436 0.0672165 9.82294 7.28063 138 924026 24 2.85477e+08 1.7978e+08 3.96548e+07 8329.09 1251.29 46.7669 36.4882 810647 16 81310 407059 235051660 46850959 21.2371 21.2371 -30093.8 -21.2371 0 0 5.06308e+07 10634.5 19.46 45.31 3.91048 3.27495 0.2227 0.7035 0.02465 0.2719
+k6_N10_I40_Fi6_L4_frac0_ff1_C20_45nm.xml blob_merge.v common 442.90 0.64 59708 18 84.72 -1 -1 67716 -1 -1 684 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 197448 36 100 6600 6700 1 2847 820 33 33 1089 clb auto 2.18 50313 7.69 0.04 9.99335 -2808.75 -9.99335 9.99335 3.34 0.0140323 0.00951764 2.48164 1.79802 126 185212 24 6.0475e+07 3.68636e+07 8.03854e+06 7381.58 307.22 7.58424 5.94656 159843 11 10472 70572 43600549 8351210 12.5053 12.5053 -3292.82 -12.5053 0 0 1.01559e+07 9325.91 3.50 7.95 0.611635 0.540296 0.03211 0.6354 0.04626 0.3184
+k6_N10_I40_Fi6_L4_frac0_ff1_C20_45nm.xml boundtop.v common 10.66 0.86 47252 2 0.57 -1 -1 36996 -1 -1 89 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 66840 114 192 455 647 1 308 395 14 14 196 clb auto 0.08 814 0.58 0.00 1.96757 -228.648 -1.96757 1.96757 0.49 0.00106673 0.000934154 0.169086 0.146217 38 3336 14 9.20055e+06 4.79657e+06 447211. 2281.69 4.68 0.634143 0.567879 2910 7 546 831 204530 64960 2.51905 2.51905 -301.312 -2.51905 0 0 565754. 2886.50 0.15 0.08 0.0242378 0.0223372 0.007547 0.5543 0.0991 0.3466
+k6_N10_I40_Fi6_L4_frac0_ff1_C20_45nm.xml ch_intrinsics.v common 4.40 0.04 9556 3 0.19 -1 -1 36148 -1 -1 70 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 68044 99 130 363 493 1 255 300 12 12 144 clb auto 0.07 668 0.38 0.00 2.12833 -226.994 -2.12833 2.12833 0.30 0.000432352 0.000374265 0.106712 0.0904777 38 3097 19 5.66058e+06 4.32058e+06 306247. 2126.71 1.77 0.267364 0.232427 2535 10 548 849 269404 87441 2.75772 2.75772 -273.476 -2.75772 0 0 388532. 2698.14 0.10 0.08 0.0221225 0.0202026 0.008181 0.3407 0.06449 0.5948
+k6_N10_I40_Fi6_L4_frac0_ff1_C20_45nm.xml diffeq1.v common 25.67 0.04 9348 15 0.44 -1 -1 34564 -1 -1 52 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 75528 162 96 999 932 1 707 315 16 16 256 mult_36 auto 0.22 5443 1.03 0.01 21.3762 -1865.85 -21.3762 21.3762 0.71 0.00321053 0.00290573 0.472713 0.422288 80 19486 32 1.21132e+07 4.78249e+06 1.14549e+06 4474.55 18.94 1.23602 1.11985 15878 16 3212 7695 4830682 1151930 24.6035 24.6035 -2079.92 -24.6035 0 0 1.44402e+06 5640.72 0.26 0.74 0.078865 0.0736575 0.008318 0.5102 0.01852 0.4713
+k6_N10_I40_Fi6_L4_frac0_ff1_C20_45nm.xml diffeq2.v common 28.61 0.03 8540 14 0.32 -1 -1 33544 -1 -1 37 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 70032 66 96 719 590 1 553 206 18 18 324 mult_36 auto 0.16 5127 0.76 0.01 16.8587 -1012.37 -16.8587 16.8587 0.99 0.00292524 0.00272687 0.412814 0.376407 52 19099 45 1.57076e+07 4.76608e+06 1.00459e+06 3100.59 21.16 1.01286 0.93138 15958 19 3300 8451 6058391 1425952 20.8269 20.8269 -1278.64 -20.8269 0 0 1.32187e+06 4079.86 0.40 1.55 0.16686 0.15599 0.008764 0.4236 0.02027 0.5561
+k6_N10_I40_Fi6_L4_frac0_ff1_C20_45nm.xml LU8PEEng.v common 1880.92 21.70 227884 129 295.22 -1 -1 100844 -1 -1 2655 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 671604 114 102 29578 29304 1 15639 2923 62 62 3844 clb auto 11.53 236559 64.64 0.37 83.7634 -57188.2 -83.7634 83.7634 28.32 0.0702292 0.0499062 10.369 7.47466 128 714612 27 2.30929e+08 1.70368e+08 2.99308e+07 7786.38 1297.93 36.2197 27.4199 619879 16 53145 236196 161401774 34613958 107.167 107.167 -73413.7 -107.167 -38.5186 -0.292146 3.78752e+07 9853.06 17.52 37.61 3.82456 3.17459 0.1133 0.6389 0.0105 0.3506
+k6_N10_I40_Fi6_L4_frac0_ff1_C20_45nm.xml LU32PEEng.v common 13436.59 170.04 770716 128 1451.09 -1 -1 298640 -1 -1 9180 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2259120 114 102 102506 101104 1 54863 9595 113 113 12769 clb auto 50.72 1129901 551.14 3.10 84.1322 -378522 -84.1322 84.1322 90.20 0.295611 0.215343 40.9939 30.0174 168 2698049 23 7.84268e+08 5.98884e+08 1.29354e+08 10130.3 10403.03 153.105 117.646 2480098 17 162541 761098 724387900 169208970 101.224 101.224 -535971 -101.224 -28.5705 -0.175894 1.63768e+08 12825.4 83.74 223.07 15.3618 12.6655 0.4613 0.6793 0.009561 0.3111
+k6_N10_I40_Fi6_L4_frac0_ff1_C20_45nm.xml mcml.v common 14282.17 62.60 954360 75 9018.53 -1 -1 447668 -1 -1 8821 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2177804 36 33 134466 132924 1 43083 9076 111 111 12321 clb auto 32.86 610677 312.82 1.89 68.5449 -321808 -68.5449 68.5449 82.56 0.207294 0.155683 32.1229 24.076 136 1488032 30 7.58755e+08 5.73176e+08 1.02898e+08 8351.42 4123.12 138.966 110.911 1329493 14 125422 492395 299987099 65927862 77.6077 77.6077 -484273 -77.6077 -0.207804 -0.0304031 1.30680e+08 10606.3 73.16 78.44 10.8016 9.30297 0.3658 0.5933 0.01277 0.3939
+k6_N10_I40_Fi6_L4_frac0_ff1_C20_45nm.xml mkDelayWorker32B.v common 87.99 0.88 79044 5 12.66 -1 -1 52388 -1 -1 503 506 47 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 278128 506 553 3285 3838 1 3016 1609 50 50 2500 memory auto 4.13 15675 5.13 0.04 6.21855 -1830.87 -6.21855 6.21855 16.80 0.0118691 0.0106769 2.56096 2.29459 38 27302 13 1.47946e+08 5.28654e+07 6.57953e+06 2631.81 28.54 6.95927 6.36598 26403 10 2808 3672 4156670 1010683 7.42307 7.42307 -2232.72 -7.42307 -2.752 -0.295467 8.28755e+06 3315.02 2.65 0.99 0.382014 0.360336 0.1626 0.1561 0.03522 0.8086
+k6_N10_I40_Fi6_L4_frac0_ff1_C20_45nm.xml mkPktMerge.v common 23.42 0.15 17312 2 0.08 -1 -1 33648 -1 -1 32 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 92704 311 156 972 1128 1 953 514 28 28 784 memory auto 0.37 8118 1.08 0.02 3.74454 -4277.48 -3.74454 3.74454 2.06 0.00571913 0.00480399 0.480014 0.404077 38 16627 19 4.25198e+07 9.94461e+06 1.95643e+06 2495.44 13.65 1.58199 1.37327 15208 10 2464 2889 3630412 997819 4.27255 4.27255 -4906.25 -4.27255 -19.4301 -0.322548 2.46901e+06 3149.24 0.79 0.86 0.122421 0.111415 0.08608 0.1702 0.01756 0.8122
+k6_N10_I40_Fi6_L4_frac0_ff1_C20_45nm.xml mkSMAdapter4B.v common 51.32 0.37 32216 7 3.65 -1 -1 37856 -1 -1 192 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 84668 193 205 2232 2437 1 1205 595 20 20 400 memory auto 0.68 9432 1.73 0.01 5.09916 -2906.57 -5.09916 5.09916 1.21 0.00329721 0.00259833 0.582773 0.468437 80 34561 46 2.07112e+07 1.30876e+07 1.86218e+06 4655.46 35.11 1.90758 1.61458 28106 14 4376 12646 6815123 1504492 6.22582 6.22582 -3536.01 -6.22582 -9.54316 -0.298787 2.34661e+06 5866.53 0.52 1.30 0.213132 0.194478 0.02831 0.3249 0.02933 0.6458
+k6_N10_I40_Fi6_L4_frac0_ff1_C20_45nm.xml or1200.v common 229.24 0.58 41088 27 6.02 -1 -1 43560 -1 -1 310 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 136188 385 394 3979 4310 1 2335 1092 27 27 729 io auto 1.31 32554 7.30 0.06 15.3045 -13419.5 -15.3045 15.3045 2.01 0.0147007 0.0132534 2.73588 2.21466 116 102075 31 3.93038e+07 1.81991e+07 4.94331e+06 6780.95 191.99 6.63867 5.66278 85219 12 8900 37236 23964854 4647354 19.0999 19.0999 -15895.7 -19.0999 0 0 6.21292e+06 8522.53 1.95 5.18 0.434714 0.395533 0.02367 0.6377 0.02744 0.3349
+k6_N10_I40_Fi6_L4_frac0_ff1_C20_45nm.xml raygentop.v common 65.00 0.43 33260 8 2.22 -1 -1 40472 -1 -1 164 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 86124 214 305 2625 2741 1 1494 692 22 22 484 mult_36 auto 0.55 12398 1.51 0.01 4.53999 -2649.95 -4.53999 4.53999 1.15 0.00352506 0.00310138 0.483113 0.410598 70 45055 46 2.50602e+07 1.24026e+07 2.07987e+06 4297.25 50.15 2.35555 2.08536 35642 12 5456 14590 9474741 2021761 6.43174 6.43174 -3569.61 -6.43174 0 0 2.60933e+06 5391.18 0.61 1.58 0.152805 0.140796 0.0228 0.6168 0.03882 0.3444
+k6_N10_I40_Fi6_L4_frac0_ff1_C20_45nm.xml sha.v common 662.03 1.14 38348 20 581.73 -1 -1 95132 -1 -1 260 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 100728 38 36 3404 3440 1 1305 334 21 21 441 clb auto 0.75 15445 1.55 0.01 14.1688 -4961.63 -14.1688 14.1688 0.97 0.00379569 0.00318777 0.577453 0.420426 114 61793 36 2.24358e+07 1.40124e+07 2.83463e+06 6427.74 60.60 3.37738 2.74535 53069 11 4784 24531 12413299 2724229 18.5188 18.5188 -6155.47 -18.5188 0 0 3.58046e+06 8118.96 0.96 2.04 0.209669 0.186437 0.0136 0.651 0.03099 0.318
+k6_N10_I40_Fi6_L4_frac0_ff1_C25_45nm.xml bgm.v common 1870.98 25.38 392892 22 474.30 -1 -1 152684 -1 -1 3215 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 793564 257 32 32168 31683 1 18967 3515 68 68 4624 clb auto 11.86 273934 82.66 0.54 18.6205 -25831.4 -18.6205 18.6205 41.31 0.0678533 0.057382 9.77901 7.2905 136 920805 22 2.79226e+08 1.77624e+08 3.79620e+07 8209.78 1059.77 45.9589 36.0644 806909 15 72940 361834 212124041 42287751 22.7895 22.7895 -30190.2 -22.7895 0 0 4.82717e+07 10439.4 14.53 40.09 3.84206 3.24385 0.218 0.6751 0.02348 0.3015
+k6_N10_I40_Fi6_L4_frac0_ff1_C25_45nm.xml blob_merge.v common 422.61 0.64 59668 18 86.91 -1 -1 67772 -1 -1 691 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 197420 36 100 6600 6700 1 2856 827 33 33 1089 clb auto 1.62 49473 8.63 0.04 9.84416 -2840.71 -9.84416 9.84416 3.78 0.0117779 0.00995608 3.11562 2.28273 124 188482 35 6.0475e+07 3.72409e+07 7.92054e+06 7273.22 283.15 8.12588 6.40086 158535 12 10615 69966 44421247 8455728 12.8935 12.8935 -3429.58 -12.8935 0 0 1.00231e+07 9203.91 3.74 11.10 1.06918 0.926877 0.03288 0.6136 0.0439 0.3425
+k6_N10_I40_Fi6_L4_frac0_ff1_C25_45nm.xml boundtop.v common 8.64 0.78 47296 2 0.58 -1 -1 36992 -1 -1 89 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 66860 114 192 455 647 1 309 395 14 14 196 clb auto 0.08 721 0.53 0.00 1.88339 -235.382 -1.88339 1.88339 0.46 0.00084956 0.000739539 0.143747 0.123998 32 3397 16 9.20055e+06 4.79657e+06 392982. 2005.01 2.79 0.43599 0.386559 2990 11 677 985 243753 79833 2.56258 2.56258 -310.165 -2.56258 0 0 482799. 2463.26 0.14 0.10 0.0337428 0.031048 0.007318 0.5345 0.09347 0.372
+k6_N10_I40_Fi6_L4_frac0_ff1_C25_45nm.xml ch_intrinsics.v common 4.43 0.05 9680 3 0.24 -1 -1 36128 -1 -1 70 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 70448 99 130 363 493 1 255 300 12 12 144 clb auto 0.08 630 0.25 0.00 2.07755 -228.418 -2.07755 2.07755 0.21 0.000437011 0.000379153 0.0691387 0.0594742 38 3005 21 5.66058e+06 4.32058e+06 306247. 2126.71 2.08 0.250383 0.219544 2376 11 556 803 240870 90300 2.84834 2.84834 -277.883 -2.84834 0 0 388532. 2698.14 0.10 0.09 0.0242559 0.0221751 0.008034 0.3344 0.06361 0.602
+k6_N10_I40_Fi6_L4_frac0_ff1_C25_45nm.xml diffeq1.v common 37.75 0.04 9436 15 0.32 -1 -1 34532 -1 -1 52 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 75648 162 96 999 932 1 707 315 16 16 256 mult_36 auto 0.15 5590 0.93 0.01 21.2802 -1868.32 -21.2802 21.2802 0.45 0.00378349 0.00349535 0.460824 0.413987 70 21037 40 1.21132e+07 4.78249e+06 1.03873e+06 4057.55 32.39 1.46232 1.32896 16485 15 3101 7223 4603870 1038058 25.5497 25.5497 -2248.31 -25.5497 0 0 1.30452e+06 5095.77 0.23 0.71 0.0776676 0.0723955 0.008143 0.4894 0.017 0.4936
+k6_N10_I40_Fi6_L4_frac0_ff1_C25_45nm.xml diffeq2.v common 22.74 0.03 8680 14 0.32 -1 -1 33476 -1 -1 37 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 69496 66 96 719 590 1 552 206 18 18 324 mult_36 auto 0.18 5062 0.41 0.00 16.6884 -979.713 -16.6884 16.6884 0.63 0.00155623 0.00143163 0.199359 0.181218 52 18697 36 1.57076e+07 4.76608e+06 1.00459e+06 3100.59 17.72 0.641485 0.590239 15066 18 3110 7839 5098703 1188633 20.3777 20.3777 -1217.31 -20.3777 0 0 1.32187e+06 4079.86 0.25 0.76 0.0747445 0.0700048 0.009051 0.4069 0.02003 0.5731
+k6_N10_I40_Fi6_L4_frac0_ff1_C25_45nm.xml LU8PEEng.v common 1537.53 21.70 227920 129 276.91 -1 -1 100808 -1 -1 2653 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 675408 114 102 29578 29304 1 15556 2921 62 62 3844 clb auto 14.60 238319 59.77 0.34 85.7478 -58794.9 -85.7478 85.7478 26.79 0.0552781 0.0470557 9.51387 6.89063 132 699765 22 2.30929e+08 1.70261e+08 3.06624e+07 7976.69 976.47 37.2112 28.2668 612698 19 50484 220821 153290641 32465188 106.034 106.034 -77098.2 -106.034 -23.9016 -0.178312 3.92624e+07 10213.9 14.24 34.26 4.00138 3.29711 0.12 0.6186 0.01022 0.3712
+k6_N10_I40_Fi6_L4_frac0_ff1_C25_45nm.xml LU32PEEng.v common 12807.85 177.47 770764 128 1445.13 -1 -1 298628 -1 -1 9189 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2255696 114 102 102506 101104 1 54863 9604 113 113 12769 clb auto 54.37 1107230 554.67 3.12 81.6751 -383478 -81.6751 81.6751 94.91 0.2958 0.211337 42.9723 31.2456 166 2719901 35 7.84268e+08 5.99369e+08 1.27798e+08 10008.4 9799.71 150.734 115.44 2440713 14 160248 749609 682949007 157551643 99.8026 99.8026 -551676 -99.8026 -30.8936 -0.180322 1.62508e+08 12726.7 54.89 191.69 13.0492 10.828 0.4756 0.6528 0.009461 0.3377
+k6_N10_I40_Fi6_L4_frac0_ff1_C25_45nm.xml mcml.v common 13725.97 66.59 954544 75 9006.53 -1 -1 447612 -1 -1 8825 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2173548 36 33 134466 132924 1 42869 9080 111 111 12321 clb auto 32.70 577761 347.68 2.00 65.3292 -312664 -65.3292 65.3292 85.57 0.207815 0.154977 36.6956 28.2287 124 1495060 32 7.58755e+08 5.73391e+08 9.52606e+07 7731.56 3537.65 129.673 103.426 1356455 15 129394 480496 335682548 70866632 78.0836 78.0836 -462886 -78.0836 -0.324988 -0.0304031 1.20267e+08 9761.15 43.24 76.86 10.0063 8.53946 0.3649 0.5557 0.01257 0.4317
+k6_N10_I40_Fi6_L4_frac0_ff1_C25_45nm.xml mkDelayWorker32B.v common 87.41 0.89 79112 5 9.06 -1 -1 52600 -1 -1 503 506 47 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 278924 506 553 3285 3838 1 3022 1609 50 50 2500 memory auto 2.69 14270 5.14 0.03 6.0886 -1905.25 -6.0886 6.0886 17.66 0.011868 0.0107667 2.55658 2.29119 38 26044 13 1.47946e+08 5.28654e+07 6.57953e+06 2631.81 30.21 7.18084 6.57549 25175 10 2984 3820 4945865 1278381 7.05737 7.05737 -2451.84 -7.05737 -3.4799 -0.295467 8.28755e+06 3315.02 3.79 1.84 0.649017 0.611034 0.1716 0.1498 0.03602 0.8142
+k6_N10_I40_Fi6_L4_frac0_ff1_C25_45nm.xml mkPktMerge.v common 25.72 0.15 17272 2 0.10 -1 -1 33676 -1 -1 32 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 90228 311 156 972 1128 1 953 514 28 28 784 memory auto 0.30 8208 0.87 0.01 3.86707 -4326.41 -3.86707 3.86707 2.09 0.00248205 0.00209312 0.375217 0.312554 34 17000 29 4.25198e+07 9.94461e+06 1.78976e+06 2282.86 16.21 1.71471 1.49915 15794 10 2860 3353 3897624 1129469 4.44904 4.44904 -5122.31 -4.44904 -18.866 -0.339827 2.20520e+06 2812.76 0.80 1.00 0.145041 0.134431 0.08268 0.1633 0.01687 0.8198
+k6_N10_I40_Fi6_L4_frac0_ff1_C25_45nm.xml mkSMAdapter4B.v common 68.86 0.37 32292 7 3.64 -1 -1 37824 -1 -1 193 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 84872 193 205 2232 2437 1 1216 596 20 20 400 memory auto 0.74 9579 1.66 0.01 5.06551 -2841.36 -5.06551 5.06551 0.86 0.00287415 0.00241906 0.558474 0.447339 74 37477 45 2.07112e+07 1.31415e+07 1.75694e+06 4392.34 52.20 1.96446 1.65862 31414 13 5035 14243 11406168 2329034 6.79008 6.79008 -3760.26 -6.79008 -6.33113 -0.340786 2.19734e+06 5493.34 0.72 2.14 0.182974 0.166815 0.02669 0.3262 0.02752 0.6462
+k6_N10_I40_Fi6_L4_frac0_ff1_C25_45nm.xml or1200.v common 229.65 0.58 41156 27 6.28 -1 -1 43848 -1 -1 308 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 136524 385 394 3979 4310 1 2332 1090 27 27 729 io auto 1.39 33128 4.64 0.03 15.4413 -13706.1 -15.4413 15.4413 2.31 0.00762408 0.00674258 1.43252 1.16914 118 100687 28 3.93038e+07 1.80914e+07 5.02598e+06 6894.35 194.86 4.80003 4.12523 83433 12 8651 35375 21909176 4317408 18.1615 18.1615 -15864.1 -18.1615 0 0 6.34295e+06 8700.89 1.64 4.71 0.638741 0.579676 0.0251 0.6189 0.02745 0.3537
+k6_N10_I40_Fi6_L4_frac0_ff1_C25_45nm.xml raygentop.v common 58.68 0.39 33456 8 2.33 -1 -1 40452 -1 -1 164 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 86328 214 305 2625 2741 1 1486 692 22 22 484 mult_36 auto 0.64 12556 1.90 0.02 4.53445 -2654.23 -4.53445 4.53445 1.34 0.00350785 0.00293853 0.624509 0.526312 72 43174 30 2.50602e+07 1.24026e+07 2.12197e+06 4384.24 40.08 1.9073 1.66677 36321 14 5460 14330 9920335 2067629 6.58633 6.58633 -3649.88 -6.58633 0 0 2.66062e+06 5497.15 0.90 2.57 0.322976 0.298143 0.02324 0.6058 0.03834 0.3558
+k6_N10_I40_Fi6_L4_frac0_ff1_C25_45nm.xml sha.v common 670.39 1.24 38584 20 590.99 -1 -1 95296 -1 -1 260 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 99336 38 36 3404 3440 1 1303 334 21 21 441 clb auto 1.16 15115 1.62 0.01 13.9352 -4868.35 -13.9352 13.9352 1.27 0.00406179 0.00339914 0.63251 0.45247 110 61748 45 2.24358e+07 1.40124e+07 2.74485e+06 6224.15 57.50 2.7737 2.23548 49451 12 4327 21242 9160745 2109448 17.678 17.678 -5949.78 -17.678 0 0 3.48714e+06 7907.35 0.80 1.58 0.211547 0.189817 0.01386 0.6166 0.03063 0.3527
+k6_N10_I40_Fi6_L4_frac0_ff1_C30_45nm.xml bgm.v common 1934.58 24.48 393028 22 501.53 -1 -1 152656 -1 -1 3228 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 790680 257 32 32168 31683 1 18857 3528 68 68 4624 clb auto 14.51 268385 76.98 0.56 18.478 -25466.3 -18.478 18.478 34.06 0.0740907 0.0535879 8.94227 6.53109 136 904826 32 2.79226e+08 1.78325e+08 3.79620e+07 8209.78 1099.45 46.9223 36.6667 797049 14 71685 352993 206768076 41100414 21.9591 21.9591 -29771.1 -21.9591 0 0 4.82717e+07 10439.4 16.17 42.41 3.87416 3.29193 0.2297 0.6474 0.02331 0.3293
+k6_N10_I40_Fi6_L4_frac0_ff1_C30_45nm.xml blob_merge.v common 396.98 0.48 59784 18 83.64 -1 -1 67772 -1 -1 688 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 197748 36 100 6600 6700 1 2849 824 33 33 1089 clb auto 2.51 49926 5.51 0.04 9.74332 -2828.66 -9.74332 9.74332 3.39 0.0105091 0.00883079 1.67913 1.24167 124 182074 24 6.0475e+07 3.70792e+07 7.92054e+06 7273.22 270.32 5.81815 4.62085 155641 10 10302 65974 41721423 7978459 13.2973 13.2973 -3512.32 -13.2973 0 0 1.00231e+07 9203.91 2.67 7.78 0.584907 0.519357 0.03406 0.5893 0.04116 0.3695
+k6_N10_I40_Fi6_L4_frac0_ff1_C30_45nm.xml boundtop.v common 9.14 0.79 47360 2 0.56 -1 -1 37068 -1 -1 89 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 67032 114 192 455 647 1 308 395 14 14 196 clb auto 0.10 870 0.43 0.00 1.96712 -244.918 -1.96712 1.96712 0.55 0.000581498 0.000512359 0.119426 0.102902 36 3746 31 9.20055e+06 4.79657e+06 427814. 2182.73 3.23 0.365875 0.324 3034 11 691 1074 288878 87604 2.51326 2.51326 -314.273 -2.51326 0 0 528560. 2696.73 0.15 0.11 0.0378534 0.0314789 0.007582 0.5273 0.09693 0.3758
+k6_N10_I40_Fi6_L4_frac0_ff1_C30_45nm.xml ch_intrinsics.v common 6.32 0.05 9664 3 0.22 -1 -1 36192 -1 -1 70 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 65316 99 130 363 493 1 254 300 12 12 144 clb auto 0.08 688 0.37 0.00 2.12566 -232.722 -2.12566 2.12566 0.30 0.000577658 0.000495062 0.0994819 0.0847366 36 3585 36 5.66058e+06 4.32058e+06 292866. 2033.79 3.56 0.343755 0.300166 2649 13 716 1059 374372 118224 2.87659 2.87659 -288.405 -2.87659 0 0 363034. 2521.07 0.06 0.07 0.0159585 0.0145003 0.008061 0.3372 0.06155 0.6013
+k6_N10_I40_Fi6_L4_frac0_ff1_C30_45nm.xml diffeq1.v common 34.34 0.04 9544 15 0.43 -1 -1 34608 -1 -1 52 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 75868 162 96 999 932 1 707 315 16 16 256 mult_36 auto 0.23 5668 1.00 0.01 21.4735 -1887.32 -21.4735 21.4735 0.71 0.00297873 0.00272244 0.433742 0.386805 78 20578 49 1.21132e+07 4.78249e+06 1.12442e+06 4392.25 27.60 1.14085 1.02999 16103 18 3330 7589 4749967 1196370 24.8872 24.8872 -2177 -24.8872 0 0 1.42200e+06 5554.70 0.25 0.73 0.0858844 0.0798953 0.008484 0.4931 0.01774 0.4891
+k6_N10_I40_Fi6_L4_frac0_ff1_C30_45nm.xml diffeq2.v common 23.56 0.05 8764 14 0.33 -1 -1 33520 -1 -1 37 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 69724 66 96 719 590 1 552 206 18 18 324 mult_36 auto 0.17 4933 0.52 0.00 17.0051 -992.015 -17.0051 17.0051 0.98 0.00143051 0.00132509 0.258932 0.234972 48 19967 45 1.57076e+07 4.76608e+06 939888. 2900.89 17.06 0.843577 0.773941 14864 19 3022 7135 4639246 1059891 20.3666 20.3666 -1258.38 -20.3666 0 0 1.20625e+06 3722.98 0.36 0.95 0.0987349 0.0930119 0.008808 0.3934 0.0197 0.5869
+k6_N10_I40_Fi6_L4_frac0_ff1_C30_45nm.xml LU8PEEng.v common 1757.11 21.02 228052 129 260.88 -1 -1 100832 -1 -1 2652 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 682336 114 102 29578 29304 1 15483 2920 62 62 3844 clb auto 12.60 241253 64.76 0.38 82.281 -61287.4 -82.281 82.281 26.40 0.0663383 0.0474704 9.792 7.24822 136 701322 21 2.30929e+08 1.70207e+08 3.15099e+07 8197.17 1215.63 36.7256 28.1243 604540 17 49111 215176 155811103 33845178 103.7 103.7 -78722.9 -103.7 -30.7648 -0.209091 4.00754e+07 10425.4 12.20 41.52 4.11992 3.40395 0.1258 0.5994 0.01016 0.3904
+k6_N10_I40_Fi6_L4_frac0_ff1_C30_45nm.xml LU32PEEng.v common 16531.15 165.45 770928 128 1445.70 -1 -1 298520 -1 -1 9188 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2269964 114 102 102506 101104 1 54700 9603 113 113 12769 clb auto 49.77 1136215 544.62 3.00 85.4269 -367797 -85.4269 85.4269 96.56 0.254543 0.211568 40.8055 30.4916 174 2741998 43 7.84268e+08 5.99315e+08 1.34059e+08 10498.7 13486.80 173.319 134.77 2468396 15 155381 712541 783026635 184507051 100.296 100.296 -538888 -100.296 -23.8606 -0.175894 1.68875e+08 13225.4 81.73 239.68 14.505 12.074 0.5042 0.638 0.009076 0.3529
+k6_N10_I40_Fi6_L4_frac0_ff1_C30_45nm.xml mcml.v common 15730.35 68.01 954640 75 8973.96 -1 -1 447748 -1 -1 8832 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2177868 36 33 134466 132924 1 42882 9087 111 111 12321 clb auto 40.72 575383 333.16 2.06 65.1503 -329093 -65.1503 65.1503 91.84 0.183557 0.154331 34.5001 26.5848 118 1468934 41 7.58755e+08 5.73769e+08 9.13958e+07 7417.89 5581.45 127.686 101.87 1305892 14 132567 476873 306077247 66481924 75.5528 75.5528 -494652 -75.5528 -0.437746 -0.0292962 1.15094e+08 9341.25 38.23 75.71 10.9264 9.33589 0.3613 0.5344 0.01285 0.4528
+k6_N10_I40_Fi6_L4_frac0_ff1_C30_45nm.xml mkDelayWorker32B.v common 88.22 1.15 79248 5 10.15 -1 -1 52408 -1 -1 503 506 47 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 279120 506 553 3285 3838 1 3016 1609 50 50 2500 memory auto 2.92 14617 5.22 0.04 5.95013 -1725.14 -5.95013 5.95013 16.72 0.0118079 0.0106749 2.57931 2.30563 38 26391 12 1.47946e+08 5.28654e+07 6.57953e+06 2631.81 31.09 7.3727 6.74544 25316 9 2825 3915 4709194 1204654 7.41286 7.41286 -2148.97 -7.41286 -5.50122 -0.29436 8.28755e+06 3315.02 3.14 1.72 0.617197 0.581025 0.1638 0.1516 0.03678 0.8116
+k6_N10_I40_Fi6_L4_frac0_ff1_C30_45nm.xml mkPktMerge.v common 23.80 0.14 17412 2 0.13 -1 -1 33668 -1 -1 32 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 90500 311 156 972 1128 1 953 514 28 28 784 memory auto 0.46 8131 0.85 0.01 3.83422 -4302.54 -3.83422 3.83422 2.10 0.00253114 0.00216283 0.367696 0.310088 36 17082 43 4.25198e+07 9.94461e+06 1.86960e+06 2384.70 13.02 1.41999 1.24014 15405 11 2877 3301 3750311 1031105 4.2958 4.2958 -4930.95 -4.2958 -13.4593 -0.339827 2.30301e+06 2937.52 0.98 1.08 0.172151 0.157725 0.08543 0.1638 0.01725 0.8189
+k6_N10_I40_Fi6_L4_frac0_ff1_C30_45nm.xml mkSMAdapter4B.v common 61.77 0.40 32384 7 2.99 -1 -1 37864 -1 -1 193 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 84404 193 205 2232 2437 1 1204 596 20 20 400 memory auto 0.71 9660 1.61 0.01 5.16429 -2983.55 -5.16429 5.16429 0.92 0.0028899 0.00246216 0.546999 0.443726 74 35110 36 2.07112e+07 1.31415e+07 1.75694e+06 4392.34 46.35 2.19702 1.88073 30023 12 4681 12900 9922754 2047720 7.06773 7.06773 -3889.18 -7.06773 -9.83354 -0.341744 2.19734e+06 5493.34 0.71 2.07 0.213879 0.195275 0.0258 0.3193 0.02739 0.6533
+k6_N10_I40_Fi6_L4_frac0_ff1_C30_45nm.xml or1200.v common 228.37 0.49 41332 27 6.89 -1 -1 43664 -1 -1 309 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 136516 385 394 3979 4310 1 2324 1091 27 27 729 io auto 1.21 31709 3.82 0.03 15.285 -13256.2 -15.285 15.285 1.97 0.00719244 0.00641173 1.12687 0.942326 112 99599 30 3.93038e+07 1.81452e+07 4.78672e+06 6566.14 194.24 5.22389 4.58539 83038 12 8686 35306 22050785 4415646 18.1228 18.1228 -15319.9 -18.1228 0 0 6.07132e+06 8328.29 1.80 4.87 0.563683 0.506744 0.02504 0.5951 0.02651 0.3784
+k6_N10_I40_Fi6_L4_frac0_ff1_C30_45nm.xml raygentop.v common 63.92 0.42 33476 8 1.48 -1 -1 40516 -1 -1 164 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 86740 214 305 2625 2741 1 1485 692 22 22 484 mult_36 auto 0.85 12307 2.70 0.03 4.53666 -2686.57 -4.53666 4.53666 1.43 0.0094646 0.00844515 0.98995 0.840819 70 42620 30 2.50602e+07 1.24026e+07 2.07987e+06 4297.25 46.44 2.4948 2.18495 34895 12 5706 14530 9806502 2080527 5.85974 5.85974 -3511.62 -5.85974 0 0 2.60933e+06 5391.18 0.68 1.54 0.151924 0.140348 0.02497 0.589 0.03882 0.3722
+k6_N10_I40_Fi6_L4_frac0_ff1_C30_45nm.xml sha.v common 648.38 0.86 38440 20 579.30 -1 -1 95320 -1 -1 260 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 97348 38 36 3404 3440 1 1302 334 21 21 441 clb auto 1.17 15196 1.45 0.01 14.2553 -4973.93 -14.2553 14.2553 1.28 0.00378306 0.00317643 0.552631 0.403953 110 59637 29 2.24358e+07 1.40124e+07 2.74485e+06 6224.15 44.57 2.53542 2.05171 48296 11 4271 20330 8942929 2064469 18.4137 18.4137 -5948.64 -18.4137 0 0 3.48714e+06 7907.35 0.92 2.34 0.365758 0.320405 0.01413 0.5938 0.02893 0.3773
+k6_N10_I40_Fi6_L4_frac0_ff1_C35_45nm.xml bgm.v common 2289.90 25.84 393100 22 464.03 -1 -1 152660 -1 -1 3237 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 807348 257 32 32168 31683 1 18806 3537 69 69 4761 clb auto 13.61 260889 86.08 0.68 17.8703 -25538.4 -17.8703 17.8703 34.14 0.0777699 0.0565948 9.94638 7.41026 128 894278 45 2.85477e+08 1.7881e+08 3.71266e+07 7798.07 1475.19 43.0959 33.5832 797407 14 75229 368483 222811726 44281981 21.7827 21.7827 -30032.3 -21.7827 0 0 4.69821e+07 9868.13 21.53 45.59 4.36641 3.76657 0.2364 0.6196 0.02282 0.3576
+k6_N10_I40_Fi6_L4_frac0_ff1_C35_45nm.xml blob_merge.v common 444.72 0.64 59940 18 85.78 -1 -1 67856 -1 -1 691 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 197216 36 100 6600 6700 1 2856 827 33 33 1089 clb auto 2.58 50841 7.20 0.05 10.1403 -2915.53 -10.1403 10.1403 3.61 0.0150903 0.010325 2.19304 1.63452 124 184888 34 6.0475e+07 3.72409e+07 7.92054e+06 7273.22 307.09 7.50511 6.00433 156511 11 10324 65085 40823449 7818274 13.5409 13.5409 -3416.59 -13.5409 0 0 1.00231e+07 9203.91 3.85 8.25 0.717286 0.622826 0.03512 0.5677 0.03924 0.3931
+k6_N10_I40_Fi6_L4_frac0_ff1_C35_45nm.xml boundtop.v common 10.69 0.78 47500 2 0.56 -1 -1 37004 -1 -1 89 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 67180 114 192 455 647 1 308 395 14 14 196 clb auto 0.09 829 0.60 0.00 1.8521 -250.295 -1.8521 1.8521 0.51 0.00115698 0.00100981 0.181236 0.157117 34 3451 21 9.20055e+06 4.79657e+06 409924. 2091.45 4.95 0.631912 0.563752 2977 8 630 930 231126 69366 2.37285 2.37285 -315.665 -2.37285 0 0 504299. 2572.95 0.14 0.09 0.0292884 0.027125 0.008037 0.5175 0.09481 0.3877
+k6_N10_I40_Fi6_L4_frac0_ff1_C35_45nm.xml ch_intrinsics.v common 5.73 0.06 9760 3 0.31 -1 -1 36100 -1 -1 70 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 68148 99 130 363 493 1 254 300 12 12 144 clb auto 0.07 683 0.38 0.00 2.20887 -229.292 -2.20887 2.20887 0.31 0.000647419 0.000551509 0.102737 0.0866783 36 3155 37 5.66058e+06 4.32058e+06 292866. 2033.79 2.79 0.297183 0.259124 2464 9 621 901 263869 90358 2.75784 2.75784 -279.576 -2.75784 0 0 363034. 2521.07 0.09 0.09 0.0253156 0.0232061 0.008375 0.3272 0.06176 0.611
+k6_N10_I40_Fi6_L4_frac0_ff1_C35_45nm.xml diffeq1.v common 24.21 0.04 9656 15 0.44 -1 -1 34568 -1 -1 52 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 79008 162 96 999 932 1 707 315 16 16 256 mult_36 auto 0.25 5550 0.95 0.01 21.07 -1874.82 -21.07 21.07 0.77 0.00320207 0.0029598 0.424277 0.377803 68 20747 36 1.21132e+07 4.78249e+06 1.01513e+06 3965.34 16.69 1.11148 1.00368 16386 19 3073 6926 4353874 976559 25.6507 25.6507 -2338.82 -25.6507 0 0 1.25479e+06 4901.54 0.35 1.16 0.183606 0.170301 0.008231 0.471 0.01623 0.5128
+k6_N10_I40_Fi6_L4_frac0_ff1_C35_45nm.xml diffeq2.v common 26.03 0.03 8816 14 0.33 -1 -1 33564 -1 -1 37 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 70248 66 96 719 590 1 552 206 18 18 324 mult_36 auto 0.18 4948 0.40 0.00 16.6183 -980.13 -16.6183 16.6183 0.75 0.00149967 0.00138338 0.192419 0.17442 56 17656 41 1.57076e+07 4.76608e+06 1.08074e+06 3335.61 18.95 0.890383 0.818168 14663 19 2900 7172 5051911 1200286 21.3776 21.3776 -1293.61 -21.3776 0 0 1.37999e+06 4259.23 0.46 1.40 0.181818 0.170733 0.008958 0.4062 0.01947 0.5743
+k6_N10_I40_Fi6_L4_frac0_ff1_C35_45nm.xml LU8PEEng.v common 2286.42 23.09 227996 129 281.19 -1 -1 100652 -1 -1 2654 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 671892 114 102 29578 29304 1 15511 2922 62 62 3844 clb auto 13.11 233018 64.72 0.37 82.6709 -60549 -82.6709 82.6709 28.64 0.0577164 0.0492854 10.0007 7.46362 128 682927 29 2.30929e+08 1.70314e+08 2.99308e+07 7786.38 1694.10 39.2277 30.1464 600972 16 52519 225438 151203082 31580206 103.524 103.524 -79410.1 -103.524 -23.3367 -0.178386 3.78752e+07 9853.06 17.01 38.98 4.27502 3.58708 0.1274 0.5678 0.009913 0.4223
+k6_N10_I40_Fi6_L4_frac0_ff1_C35_45nm.xml LU32PEEng.v common 13547.01 172.08 770924 128 1558.85 -1 -1 298624 -1 -1 9207 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2260796 114 102 102506 101104 1 54711 9622 113 113 12769 clb auto 56.13 1162807 578.88 2.89 83.4823 -396829 -83.4823 83.4823 86.80 0.248768 0.208419 44.3628 32.7521 172 2712550 49 7.84268e+08 6.00339e+08 1.32514e+08 10377.8 10340.96 170.896 132.501 2446791 14 155047 705453 799058084 193151370 99.0435 99.0435 -574157 -99.0435 -29.8978 -0.17368 1.67585e+08 13124.4 76.02 259.75 13.7561 11.4726 0.5185 0.6145 0.008939 0.3766
+k6_N10_I40_Fi6_L4_frac0_ff1_C35_45nm.xml mcml.v common 14283.15 68.25 954584 75 9142.94 -1 -1 447656 -1 -1 8827 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2174024 36 33 134466 132924 1 42881 9082 111 111 12321 clb auto 34.10 560512 319.34 2.11 64.8125 -317105 -64.8125 64.8125 83.47 0.186305 0.155353 34.6587 26.6257 124 1479062 48 7.58755e+08 5.73499e+08 9.52606e+07 7731.56 4018.71 141.706 113.223 1325392 14 128086 452311 335195922 71317069 78.8559 78.8559 -469115 -78.8559 -0.78534 -0.171467 1.20267e+08 9761.15 43.68 83.12 11.2428 9.72094 0.3803 0.5277 0.01225 0.4601
+k6_N10_I40_Fi6_L4_frac0_ff1_C35_45nm.xml mkDelayWorker32B.v common 89.82 1.14 79308 5 10.14 -1 -1 52408 -1 -1 503 506 47 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 275948 506 553 3285 3838 1 3016 1609 50 50 2500 memory auto 3.13 13913 5.27 0.04 6.68172 -1678.97 -6.68172 6.68172 20.08 0.0125384 0.0113822 2.61276 2.34143 38 25676 19 1.47946e+08 5.28654e+07 6.57953e+06 2631.81 30.91 6.89996 6.30932 24335 10 2968 3906 3630913 860256 7.62691 7.62691 -1983.43 -7.62691 -7.51875 -0.295467 8.28755e+06 3315.02 2.69 0.91 0.397912 0.375065 0.1603 0.148 0.03726 0.8147
+k6_N10_I40_Fi6_L4_frac0_ff1_C35_45nm.xml mkPktMerge.v common 24.92 0.15 17404 2 0.12 -1 -1 33664 -1 -1 32 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 91564 311 156 972 1128 1 953 514 28 28 784 memory auto 0.46 8023 0.92 0.01 3.88478 -4298.57 -3.88478 3.88478 2.08 0.0025747 0.00218337 0.404224 0.33882 38 16351 36 4.25198e+07 9.94461e+06 1.95643e+06 2495.44 14.75 1.58653 1.38257 14865 9 2245 2544 3228217 903109 4.56132 4.56132 -4964.69 -4.56132 -19.468 -0.360359 2.46901e+06 3149.24 1.00 0.82 0.121199 0.110701 0.08146 0.1678 0.0174 0.8148
+k6_N10_I40_Fi6_L4_frac0_ff1_C35_45nm.xml mkSMAdapter4B.v common 60.54 0.35 32368 7 3.93 -1 -1 37916 -1 -1 193 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 84200 193 205 2232 2437 1 1204 596 20 20 400 memory auto 0.72 9291 1.61 0.01 5.0168 -2858.79 -5.0168 5.0168 1.11 0.00307011 0.00259549 0.551577 0.447219 74 36183 45 2.07112e+07 1.31415e+07 1.75694e+06 4392.34 44.24 2.02719 1.71726 29299 13 4597 12338 9433949 1923917 6.80336 6.80336 -3683.84 -6.80336 -10.511 -0.339827 2.19734e+06 5493.34 0.45 1.43 0.149731 0.136263 0.0267 0.309 0.02746 0.6636
+k6_N10_I40_Fi6_L4_frac0_ff1_C35_45nm.xml or1200.v common 200.52 0.52 41364 27 5.37 -1 -1 43888 -1 -1 308 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 136256 385 394 3979 4310 1 2331 1090 27 27 729 io auto 1.53 31621 3.76 0.03 14.7691 -13890.5 -14.7691 14.7691 2.04 0.00744323 0.00657211 1.15662 0.953106 116 95811 31 3.93038e+07 1.80914e+07 4.94331e+06 6780.95 168.27 5.09559 4.40738 81856 11 8593 34958 22482166 4421626 18.0741 18.0741 -16005.4 -18.0741 0 0 6.21292e+06 8522.53 2.56 4.19 0.378897 0.347294 0.02608 0.5834 0.0262 0.3904
+k6_N10_I40_Fi6_L4_frac0_ff1_C35_45nm.xml raygentop.v common 63.06 0.50 33532 8 2.09 -1 -1 40436 -1 -1 164 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 86484 214 305 2625 2741 1 1484 692 22 22 484 mult_36 auto 0.76 12414 1.91 0.02 4.62295 -2674.94 -4.62295 4.62295 1.37 0.00399009 0.00354108 0.650761 0.550209 70 42811 45 2.50602e+07 1.24026e+07 2.07987e+06 4297.25 44.52 2.39139 2.09915 34366 12 5503 13937 9629500 2091416 6.00191 6.00191 -3524.22 -6.00191 0 0 2.60933e+06 5391.18 0.93 1.89 0.171151 0.158955 0.02492 0.5752 0.03799 0.3868
+k6_N10_I40_Fi6_L4_frac0_ff1_C35_45nm.xml sha.v common 762.67 1.07 38484 20 645.94 -1 -1 95404 -1 -1 260 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 99208 38 36 3404 3440 1 1302 334 21 21 441 clb auto 1.01 15089 1.41 0.01 14.3593 -5093.99 -14.3593 14.3593 0.95 0.00381748 0.00311714 0.546035 0.399262 102 56811 20 2.24358e+07 1.40124e+07 2.56171e+06 5808.86 95.83 2.85063 2.25654 48821 12 4718 21832 10158663 2279631 17.7661 17.7661 -6132.5 -17.7661 0 0 3.21213e+06 7283.74 0.83 1.77 0.225501 0.199344 0.01417 0.5565 0.0272 0.4163
+k6_N10_I40_Fi6_L4_frac0_ff1_C40_45nm.xml bgm.v common 2030.62 24.14 393132 22 493.44 -1 -1 152604 -1 -1 3234 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 791160 257 32 32168 31683 1 18841 3534 68 68 4624 clb auto 18.17 266100 91.69 0.91 17.3995 -25833.1 -17.3995 17.3995 33.77 0.0685877 0.0584593 10.7303 7.91407 136 896605 43 2.79226e+08 1.78648e+08 3.79620e+07 8209.78 1179.70 53.9225 42.0714 788726 14 72395 353916 209896834 41987750 21.13 21.13 -30121.4 -21.13 0 0 4.82717e+07 10439.4 14.58 40.54 3.94961 3.40536 0.2487 0.607 0.02271 0.3703
+k6_N10_I40_Fi6_L4_frac0_ff1_C40_45nm.xml blob_merge.v common 395.38 0.65 60036 18 90.00 -1 -1 67852 -1 -1 689 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 197384 36 100 6600 6700 1 2852 825 33 33 1089 clb auto 2.86 48434 5.95 0.04 10.0122 -2880.73 -10.0122 10.0122 4.48 0.0123587 0.0106495 1.92088 1.42884 118 178669 31 6.0475e+07 3.71331e+07 7.60158e+06 6980.33 261.82 8.03727 6.42687 151173 11 10192 65796 39393980 7614031 12.8163 12.8163 -3392.64 -12.8163 0 0 9.59472e+06 8810.58 2.71 7.05 0.622402 0.548253 0.03554 0.5401 0.03898 0.4209
+k6_N10_I40_Fi6_L4_frac0_ff1_C40_45nm.xml boundtop.v common 8.21 0.83 47588 2 0.60 -1 -1 37096 -1 -1 89 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 66160 114 192 455 647 1 308 395 14 14 196 clb auto 0.09 803 0.36 0.00 1.86206 -227.804 -1.86206 1.86206 0.44 0.00059649 0.00051966 0.0977623 0.0850253 38 3425 31 9.20055e+06 4.79657e+06 447211. 2281.69 2.63 0.362189 0.322739 2810 9 591 846 228391 71660 2.36149 2.36149 -300.599 -2.36149 0 0 565754. 2886.50 0.10 0.05 0.0168178 0.0154964 0.008287 0.5168 0.09621 0.387
+k6_N10_I40_Fi6_L4_frac0_ff1_C40_45nm.xml ch_intrinsics.v common 5.42 0.07 9844 3 0.31 -1 -1 36164 -1 -1 70 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 71836 99 130 363 493 1 254 300 12 12 144 clb auto 0.07 657 0.25 0.00 2.31626 -233.028 -2.31626 2.31626 0.25 0.000433025 0.000372518 0.070451 0.0604866 40 2995 18 5.66058e+06 4.32058e+06 318116. 2209.14 2.62 0.314697 0.277778 2360 11 575 844 228079 77046 2.78597 2.78597 -272.975 -2.78597 0 0 401429. 2787.70 0.10 0.08 0.0255213 0.0232579 0.00849 0.329 0.0636 0.6074
+k6_N10_I40_Fi6_L4_frac0_ff1_C40_45nm.xml diffeq1.v common 28.43 0.04 9668 15 0.36 -1 -1 34504 -1 -1 52 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 76168 162 96 999 932 1 707 315 16 16 256 mult_36 auto 0.17 5715 0.75 0.01 21.6199 -1871.5 -21.6199 21.6199 0.45 0.00162672 0.00146999 0.313025 0.279355 70 20315 39 1.21132e+07 4.78249e+06 1.03873e+06 4057.55 22.42 1.1402 1.03656 16062 17 3043 6745 4651134 1093496 25.351 25.351 -2305.88 -25.351 0 0 1.30452e+06 5095.77 0.24 1.06 0.144808 0.135126 0.008467 0.4634 0.01646 0.5202
+k6_N10_I40_Fi6_L4_frac0_ff1_C40_45nm.xml diffeq2.v common 26.85 0.03 8908 14 0.33 -1 -1 33536 -1 -1 37 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 69944 66 96 719 590 1 552 206 18 18 324 mult_36 auto 0.18 4999 0.73 0.01 16.31 -976.134 -16.31 16.31 1.04 0.0032102 0.00297348 0.394777 0.355611 50 18480 50 1.57076e+07 4.76608e+06 971792. 2999.36 20.29 1.17239 1.0748 14667 19 3288 7560 4948880 1185373 20.517 20.517 -1256.99 -20.517 0 0 1.24544e+06 3843.94 0.24 0.75 0.0776371 0.0727444 0.009119 0.3838 0.01877 0.5974
+k6_N10_I40_Fi6_L4_frac0_ff1_C40_45nm.xml LU8PEEng.v common 1764.05 22.47 228056 129 290.86 -1 -1 100836 -1 -1 2658 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 671824 114 102 29578 29304 1 15486 2926 62 62 3844 clb auto 14.15 240534 74.03 0.38 80.6291 -56875.8 -80.6291 80.6291 29.12 0.0588674 0.0487732 11.0775 8.34748 130 687805 47 2.30929e+08 1.7053e+08 3.02943e+07 7880.93 1185.04 38.1494 29.3457 593558 17 50331 214849 137504328 29446850 99.1299 99.1299 -71750.4 -99.1299 -27.4216 -0.182517 3.83330e+07 9972.17 14.04 29.68 3.49971 2.90688 0.1328 0.55 0.009908 0.4401
+k6_N10_I40_Fi6_L4_frac0_ff1_C40_45nm.xml LU32PEEng.v common 19399.05 164.91 771000 128 1514.49 -1 -1 298508 -1 -1 9185 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2255780 114 102 102506 101104 1 54744 9600 113 113 12769 clb auto 53.54 1137978 568.14 3.23 83.0791 -395304 -83.0791 83.0791 87.77 0.308707 0.220334 43.7608 32.5882 168 2681608 40 7.84268e+08 5.99154e+08 1.29354e+08 10130.3 16281.92 167.742 128.965 2432304 17 158478 720363 771534408 184467436 98.3133 98.3133 -559043 -98.3133 -21.8163 -0.174787 1.63768e+08 12825.4 85.40 233.86 14.7392 12.1647 0.5286 0.5927 0.008825 0.3985
+k6_N10_I40_Fi6_L4_frac0_ff1_C40_45nm.xml mcml.v common 13367.94 65.06 954528 75 9067.18 -1 -1 447760 -1 -1 8827 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2178388 36 33 134466 132924 1 42881 9082 111 111 12321 clb auto 35.03 554282 310.44 2.62 64.5236 -316684 -64.5236 64.5236 82.57 0.188806 0.158093 33.4459 25.5884 124 1433414 41 7.58755e+08 5.73499e+08 9.52606e+07 7731.56 3153.01 132.144 105.168 1306347 15 125512 438750 315863821 66719023 77.1946 77.1946 -450438 -77.1946 -0.311245 -0.0393882 1.20267e+08 9761.15 39.89 73.87 10.3104 8.76453 0.3906 0.5139 0.01222 0.4739
+k6_N10_I40_Fi6_L4_frac0_ff1_C40_45nm.xml mkDelayWorker32B.v common 81.52 0.89 79324 5 8.10 -1 -1 52472 -1 -1 503 506 47 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 276136 506 553 3285 3838 1 3016 1609 50 50 2500 memory auto 2.72 13645 5.13 0.04 6.10846 -1762.1 -6.10846 6.10846 17.16 0.0140512 0.0128152 2.55878 2.29484 38 25666 10 1.47946e+08 5.28654e+07 6.57953e+06 2631.81 28.80 7.40564 6.78584 24493 9 2928 3796 3961215 1008011 7.23682 7.23682 -2141.05 -7.23682 -5.62071 -0.217304 8.28755e+06 3315.02 2.66 1.02 0.367278 0.346324 0.1691 0.1451 0.03772 0.8171
+k6_N10_I40_Fi6_L4_frac0_ff1_C40_45nm.xml mkPktMerge.v common 21.43 0.16 17544 2 0.09 -1 -1 33712 -1 -1 32 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 91160 311 156 972 1128 1 953 514 28 28 784 memory auto 0.31 8380 0.90 0.01 4.43907 -4322.22 -4.43907 4.43907 2.18 0.00265046 0.00227752 0.391344 0.328565 38 16618 11 4.25198e+07 9.94461e+06 1.95643e+06 2495.44 12.41 1.43047 1.24566 15230 8 2271 2598 3115422 882769 5.05937 5.05937 -4865.33 -5.05937 -12.6068 -0.360359 2.46901e+06 3149.24 0.76 0.57 0.078334 0.0720696 0.07485 0.1744 0.01711 0.8085
+k6_N10_I40_Fi6_L4_frac0_ff1_C40_45nm.xml mkSMAdapter4B.v common 54.00 0.33 32464 7 2.82 -1 -1 37868 -1 -1 193 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 84748 193 205 2232 2437 1 1204 596 20 20 400 memory auto 0.53 9359 1.67 0.01 5.47218 -2943.63 -5.47218 5.47218 0.95 0.00350716 0.00300006 0.5824 0.472419 74 34242 31 2.07112e+07 1.31415e+07 1.75694e+06 4392.34 39.33 1.97482 1.66378 29615 12 4518 11994 9024109 1852816 7.07076 7.07076 -3737.81 -7.07076 -14.3415 -0.298787 2.19734e+06 5493.34 0.63 2.25 0.254697 0.231624 0.02643 0.3131 0.02673 0.6602
+k6_N10_I40_Fi6_L4_frac0_ff1_C40_45nm.xml or1200.v common 206.82 0.63 41512 27 5.13 -1 -1 43668 -1 -1 309 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 136364 385 394 3979 4310 1 2324 1091 27 27 729 io auto 1.09 31633 3.97 0.03 15.0792 -13433.6 -15.0792 15.0792 2.00 0.00739364 0.00658233 1.19567 0.991181 112 96398 30 3.93038e+07 1.81452e+07 4.78672e+06 6566.14 175.81 4.81703 4.18122 81544 12 8534 34622 21105727 4193472 17.8315 17.8315 -16194.5 -17.8315 0 0 6.07132e+06 8328.29 2.32 4.24 0.382957 0.347116 0.02656 0.5644 0.02537 0.4103
+k6_N10_I40_Fi6_L4_frac0_ff1_C40_45nm.xml raygentop.v common 51.98 0.48 33664 8 1.64 -1 -1 40488 -1 -1 164 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 86188 214 305 2625 2741 1 1484 692 22 22 484 mult_36 auto 0.59 12181 1.51 0.01 4.74402 -2690.97 -4.74402 4.74402 1.26 0.00330878 0.00289416 0.487977 0.41554 70 40611 24 2.50602e+07 1.24026e+07 2.07987e+06 4297.25 37.04 1.84034 1.62346 33989 11 5410 13450 8285227 1798926 6.04885 6.04885 -3488.97 -6.04885 0 0 2.60933e+06 5391.18 0.77 1.36 0.148465 0.137664 0.02534 0.566 0.03708 0.397
+k6_N10_I40_Fi6_L4_frac0_ff1_C40_45nm.xml sha.v common 822.70 1.18 38744 20 723.11 -1 -1 95340 -1 -1 260 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 99448 38 36 3404 3440 1 1302 334 21 21 441 clb auto 0.89 14912 1.43 0.01 14.4925 -4894.48 -14.4925 14.4925 0.97 0.00498898 0.00439777 0.56064 0.404385 102 57673 30 2.24358e+07 1.40124e+07 2.56171e+06 5808.86 78.03 2.46471 1.95423 48615 12 4676 21932 10132662 2270398 18.0821 18.0821 -5931.91 -18.0821 0 0 3.21213e+06 7283.74 1.06 1.78 0.225746 0.201192 0.01451 0.539 0.02612 0.4349
+k6_N10_I40_Fi6_L4_frac0_ff1_C45_45nm.xml bgm.v common 1867.91 24.66 393248 22 470.49 -1 -1 152668 -1 -1 3241 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 810512 257 32 32168 31683 1 18834 3541 69 69 4761 clb auto 13.89 265071 107.75 0.59 18.3261 -25450 -18.3261 18.3261 36.45 0.0779382 0.0560956 12.0059 8.97188 132 877645 21 2.85477e+08 1.79025e+08 3.80409e+07 7990.10 1028.36 44.3649 34.7329 791096 16 73299 355498 216134643 43403759 21.6859 21.6859 -29935.1 -21.6859 0 0 4.86949e+07 10227.9 21.35 42.93 4.37649 3.73821 0.2553 0.5841 0.02179 0.3941
+k6_N10_I40_Fi6_L4_frac0_ff1_C45_45nm.xml blob_merge.v common 449.75 0.67 60068 18 86.46 -1 -1 67492 -1 -1 685 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 196292 36 100 6600 6700 1 2841 821 33 33 1089 clb auto 2.08 48358 6.95 0.04 9.82017 -2794.46 -9.82017 9.82017 3.83 0.0152251 0.0101434 2.27703 1.6455 116 176547 24 6.0475e+07 3.69175e+07 7.47568e+06 6864.72 314.86 7.64512 5.98956 152554 11 10761 68115 42446653 8102787 12.6025 12.6025 -3337.37 -12.6025 0 0 9.39776e+06 8629.72 2.57 8.52 0.763523 0.669265 0.03656 0.5164 0.03801 0.4456
+k6_N10_I40_Fi6_L4_frac0_ff1_C45_45nm.xml boundtop.v common 9.94 0.74 47708 2 0.56 -1 -1 37028 -1 -1 89 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 66520 114 192 455 647 1 308 395 14 14 196 clb auto 0.06 814 0.38 0.00 1.66682 -227.557 -1.66682 1.66682 0.37 0.000588647 0.000517582 0.104695 0.0910545 38 3658 22 9.20055e+06 4.79657e+06 447211. 2281.69 4.65 0.413109 0.367927 2833 10 575 871 232602 70865 2.34668 2.34668 -291.437 -2.34668 0 0 565754. 2886.50 0.16 0.09 0.0316647 0.0292566 0.008466 0.5066 0.09476 0.3987
+k6_N10_I40_Fi6_L4_frac0_ff1_C45_45nm.xml ch_intrinsics.v common 6.07 0.06 9952 3 0.28 -1 -1 36072 -1 -1 70 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 71644 99 130 363 493 1 254 300 12 12 144 clb auto 0.07 657 0.39 0.00 2.31626 -233.028 -2.31626 2.31626 0.32 0.00067349 0.000579824 0.109123 0.0927105 40 3084 20 5.66058e+06 4.32058e+06 318116. 2209.14 3.13 0.356086 0.312811 2455 10 564 821 254447 84245 2.8143 2.8143 -275.799 -2.8143 0 0 401429. 2787.70 0.10 0.09 0.0256342 0.0235287 0.008554 0.3289 0.06249 0.6086
+k6_N10_I40_Fi6_L4_frac0_ff1_C45_45nm.xml diffeq1.v common 26.76 0.04 9732 15 0.31 -1 -1 34576 -1 -1 52 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 76272 162 96 999 932 1 707 315 16 16 256 mult_36 auto 0.26 5563 0.57 0.01 21.1276 -1911.14 -21.1276 21.1276 0.59 0.00162586 0.00146996 0.22869 0.204883 74 19775 28 1.21132e+07 4.78249e+06 1.08072e+06 4221.55 20.25 0.89455 0.812393 16632 16 3008 6640 5885548 1379042 26.242 26.242 -2398.25 -26.242 0 0 1.35231e+06 5282.46 0.25 0.92 0.0808738 0.0754437 0.008611 0.4639 0.01626 0.5199
+k6_N10_I40_Fi6_L4_frac0_ff1_C45_45nm.xml diffeq2.v common 18.46 0.04 8928 14 0.32 -1 -1 33544 -1 -1 37 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 70476 66 96 719 590 1 552 206 18 18 324 mult_36 auto 0.17 5011 0.42 0.00 16.8019 -982.877 -16.8019 16.8019 0.64 0.00153395 0.00141586 0.207154 0.187779 48 18216 35 1.57076e+07 4.76608e+06 939888. 2900.89 13.14 0.712994 0.655087 14413 17 3034 6951 4606592 1059529 20.5088 20.5088 -1226.49 -20.5088 0 0 1.20625e+06 3722.98 0.39 0.72 0.0797864 0.075321 0.009194 0.3702 0.01876 0.6111
+k6_N10_I40_Fi6_L4_frac0_ff1_C45_45nm.xml LU8PEEng.v common 1616.34 21.37 228180 129 264.49 -1 -1 100884 -1 -1 2654 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 673292 114 102 29578 29304 1 15480 2922 62 62 3844 clb auto 14.87 236321 58.24 0.39 80.7008 -61858.5 -80.7008 80.7008 27.79 0.0665593 0.0466575 8.82052 6.57842 132 680940 28 2.30929e+08 1.70314e+08 3.06624e+07 7976.69 1068.00 39.3675 30.307 594909 16 48561 207829 142036607 30088126 102.745 102.745 -79399.2 -102.745 -31.6286 -0.292146 3.92624e+07 10213.9 14.33 30.52 3.57386 2.95153 0.1383 0.5356 0.009425 0.4549
+k6_N10_I40_Fi6_L4_frac0_ff1_C45_45nm.xml LU32PEEng.v common 15629.35 175.54 771144 128 1503.71 -1 -1 298376 -1 -1 9168 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2253648 114 102 102506 101104 1 54645 9583 113 113 12769 clb auto 54.18 1131537 545.49 2.99 83.9332 -407110 -83.9332 83.9332 86.77 0.267652 0.22827 41.516 31.0253 168 2645891 31 7.84268e+08 5.98238e+08 1.29354e+08 10130.3 12554.58 149.524 115.761 2422059 14 158737 726763 750602129 180822827 98.0936 98.0936 -557170 -98.0936 -15.9129 -0.172573 1.63768e+08 12825.4 77.21 222.38 14.5029 12.0077 0.5459 0.573 0.008628 0.4184
+k6_N10_I40_Fi6_L4_frac0_ff1_C45_45nm.xml mcml.v common 15934.67 65.71 954652 75 9233.62 -1 -1 447700 -1 -1 8821 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2173188 36 33 134466 132924 1 42854 9076 111 111 12321 clb auto 42.13 570815 331.87 1.83 65.341 -317154 -65.341 65.341 93.91 0.194442 0.165701 34.5497 26.3928 124 1464747 39 7.58755e+08 5.73176e+08 9.52606e+07 7731.56 5491.07 136.939 109.074 1324789 15 126942 450681 330213561 69873653 77.6632 77.6632 -489206 -77.6632 -1.1874 -0.169253 1.20267e+08 9761.15 40.30 82.44 11.4742 9.85683 0.4042 0.4971 0.01188 0.491
+k6_N10_I40_Fi6_L4_frac0_ff1_C45_45nm.xml mkDelayWorker32B.v common 88.49 1.17 79476 5 10.07 -1 -1 52356 -1 -1 503 506 47 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 276308 506 553 3285 3838 1 3016 1609 50 50 2500 memory auto 3.76 15118 5.18 0.04 6.2866 -1900.81 -6.2866 6.2866 17.08 0.0120865 0.0109964 2.56724 2.2944 38 26943 23 1.47946e+08 5.28654e+07 6.57953e+06 2631.81 30.23 7.41575 6.78549 25696 11 2782 3574 4484685 1191162 7.41397 7.41397 -2312.53 -7.41397 -4.68704 -0.295467 8.28755e+06 3315.02 2.91 1.18 0.451757 0.424844 0.1683 0.1514 0.03769 0.8109
+k6_N10_I40_Fi6_L4_frac0_ff1_C45_45nm.xml mkPktMerge.v common 26.05 0.18 17700 2 0.14 -1 -1 33668 -1 -1 32 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 91176 311 156 972 1128 1 953 514 28 28 784 memory auto 0.47 8023 1.53 0.01 3.88478 -4298.57 -3.88478 3.88478 2.68 0.00255561 0.00216856 0.71981 0.614472 38 16522 27 4.25198e+07 9.94461e+06 1.95643e+06 2495.44 14.50 1.99291 1.74337 14932 10 2157 2461 3207853 906171 4.55911 4.55911 -4962.22 -4.55911 -19.5833 -0.360359 2.46901e+06 3149.24 0.82 0.68 0.10516 0.0963671 0.08229 0.167 0.01724 0.8158
+k6_N10_I40_Fi6_L4_frac0_ff1_C45_45nm.xml mkSMAdapter4B.v common 55.31 0.31 32660 7 3.18 -1 -1 37868 -1 -1 194 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 84532 193 205 2232 2437 1 1205 597 20 20 400 memory auto 0.54 9634 1.73 0.01 5.37484 -2949.86 -5.37484 5.37484 1.05 0.00311249 0.00246185 0.601522 0.479818 76 32760 33 2.07112e+07 1.31954e+07 1.79151e+06 4478.77 39.71 1.97322 1.65933 28493 12 4280 11381 7711003 1656345 6.79893 6.79893 -3690.49 -6.79893 -8.76981 -0.360359 2.23557e+06 5588.92 0.84 2.12 0.235742 0.213957 0.02756 0.3063 0.02677 0.6669
+k6_N10_I40_Fi6_L4_frac0_ff1_C45_45nm.xml or1200.v common 301.06 0.66 41636 27 5.46 -1 -1 43592 -1 -1 310 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 136324 385 394 3979 4310 1 2327 1092 27 27 729 io auto 1.50 31882 5.52 0.03 15.152 -13317.8 -15.152 15.152 2.55 0.00758503 0.00674949 1.89997 1.56643 112 101575 35 3.93038e+07 1.81991e+07 4.78672e+06 6566.14 265.77 5.46399 4.70547 82212 12 8890 35902 23638003 4768496 18.062 18.062 -15292.8 -18.062 0 0 6.07132e+06 8328.29 2.42 4.86 0.429555 0.386659 0.0272 0.5483 0.02448 0.4272
+k6_N10_I40_Fi6_L4_frac0_ff1_C45_45nm.xml raygentop.v common 63.98 0.46 33612 8 1.98 -1 -1 40576 -1 -1 164 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 86908 214 305 2625 2741 1 1484 692 22 22 484 mult_36 auto 0.84 12354 1.47 0.01 4.66666 -2670.13 -4.66666 4.66666 1.12 0.00330474 0.00286817 0.475919 0.404142 70 40998 38 2.50602e+07 1.24026e+07 2.07987e+06 4297.25 47.91 2.20505 1.93834 33995 12 5454 13701 8406764 1823110 6.13744 6.13744 -3483.19 -6.13744 0 0 2.60933e+06 5391.18 0.74 1.39 0.14929 0.138429 0.02546 0.5507 0.03638 0.4129
+k6_N10_I40_Fi6_L4_frac0_ff1_C45_45nm.xml sha.v common 740.85 0.87 38672 20 617.59 -1 -1 95312 -1 -1 260 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 99160 38 36 3404 3440 1 1302 334 21 21 441 clb auto 1.42 15093 1.78 0.01 13.9957 -4867 -13.9957 13.9957 1.77 0.00622013 0.00395888 0.76739 0.529325 102 57017 27 2.24358e+07 1.40124e+07 2.56171e+06 5808.86 98.67 3.29948 2.62369 48771 14 4711 21376 10025068 2236900 18.4009 18.4009 -5883.63 -18.4009 0 0 3.21213e+06 7283.74 0.88 1.81 0.253156 0.222136 0.01491 0.5186 0.02501 0.4564
+k6_N10_I40_Fi6_L4_frac0_ff1_C50_45nm.xml bgm.v common 2085.15 22.47 393300 22 539.25 -1 -1 152568 -1 -1 3241 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 810168 257 32 32168 31683 1 18834 3541 69 69 4761 clb auto 13.14 274616 83.72 0.61 17.7364 -26019.8 -17.7364 17.7364 35.00 0.0681491 0.0580647 9.50696 7.05097 136 900120 27 2.85477e+08 1.79025e+08 3.90929e+07 8211.07 1186.20 45.6611 35.7686 793004 14 81089 393358 230719437 45977126 20.8848 20.8848 -30219.3 -20.8848 0 0 4.97065e+07 10440.4 19.88 47.51 4.1748 3.54014 0.2685 0.5709 0.02195 0.4071
+k6_N10_I40_Fi6_L4_frac0_ff1_C50_45nm.xml blob_merge.v common 431.77 0.51 60132 18 86.05 -1 -1 67824 -1 -1 685 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 197072 36 100 6600 6700 1 2841 821 33 33 1089 clb auto 1.87 49746 6.00 0.09 9.97265 -2880.19 -9.97265 9.97265 3.36 0.0343134 0.0258511 2.04216 1.43713 120 173023 21 6.0475e+07 3.69175e+07 7.71890e+06 7088.06 301.83 10.0426 7.98208 149278 11 10058 63528 37052621 7212829 12.7616 12.7616 -3338.93 -12.7616 0 0 9.69442e+06 8902.13 2.56 6.71 0.607841 0.537145 0.0378 0.5066 0.03715 0.4563
+k6_N10_I40_Fi6_L4_frac0_ff1_C50_45nm.xml boundtop.v common 9.25 0.85 47776 2 0.37 -1 -1 37000 -1 -1 89 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 67276 114 192 455 647 1 308 395 14 14 196 clb auto 0.10 814 0.35 0.00 1.66682 -227.557 -1.66682 1.66682 0.32 0.000583631 0.000514412 0.0966101 0.0846321 38 3676 45 9.20055e+06 4.79657e+06 447211. 2281.69 4.34 0.380709 0.339296 2858 9 564 856 216619 66961 2.34668 2.34668 -288.669 -2.34668 0 0 565754. 2886.50 0.10 0.05 0.01697 0.0156507 0.008553 0.502 0.09379 0.4042
+k6_N10_I40_Fi6_L4_frac0_ff1_C50_45nm.xml ch_intrinsics.v common 4.87 0.06 9976 3 0.19 -1 -1 36104 -1 -1 70 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 71696 99 130 363 493 1 254 300 12 12 144 clb auto 0.05 657 0.26 0.00 2.31626 -233.028 -2.31626 2.31626 0.21 0.00047983 0.000414056 0.0726684 0.062402 40 3060 26 5.66058e+06 4.32058e+06 318116. 2209.14 2.53 0.277989 0.243421 2489 11 587 836 252558 83096 2.8143 2.8143 -280.417 -2.8143 0 0 401429. 2787.70 0.07 0.05 0.0150245 0.0137073 0.008723 0.3317 0.06128 0.607
+k6_N10_I40_Fi6_L4_frac0_ff1_C50_45nm.xml diffeq1.v common 20.26 0.05 9844 15 0.30 -1 -1 34508 -1 -1 52 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 76136 162 96 999 932 1 707 315 16 16 256 mult_36 auto 0.17 5507 0.56 0.01 21.537 -1892.48 -21.537 21.537 0.47 0.0016454 0.00148075 0.232521 0.207066 72 18220 21 1.21132e+07 4.78249e+06 1.05993e+06 4140.35 15.14 0.847426 0.767879 15784 13 2793 6039 4154292 946454 24.84 24.84 -2312.33 -24.84 0 0 1.33020e+06 5196.10 0.24 0.64 0.0792216 0.0741311 0.008951 0.4489 0.01633 0.5348
+k6_N10_I40_Fi6_L4_frac0_ff1_C50_45nm.xml diffeq2.v common 27.81 0.04 8928 14 0.23 -1 -1 33492 -1 -1 37 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 70184 66 96 719 590 1 552 206 18 18 324 mult_36 auto 0.22 4964 0.73 0.01 16.4065 -983.682 -16.4065 16.4065 0.61 0.00299973 0.00279931 0.391793 0.357869 52 17193 45 1.57076e+07 4.76608e+06 1.00459e+06 3100.59 21.33 0.942689 0.8669 14193 14 2792 6385 4085362 957025 20.4351 20.4351 -1217.92 -20.4351 0 0 1.32187e+06 4079.86 0.43 1.04 0.118382 0.111824 0.009525 0.3734 0.01898 0.6076
+k6_N10_I40_Fi6_L4_frac0_ff1_C50_45nm.xml LU8PEEng.v common 2039.98 21.05 228328 129 295.57 -1 -1 100860 -1 -1 2654 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 675532 114 102 29578 29304 1 15480 2922 62 62 3844 clb auto 14.28 240417 85.03 0.77 81.932 -62111.7 -81.932 81.932 31.98 0.148674 0.112922 12.5899 9.47622 136 694346 27 2.30929e+08 1.70314e+08 3.15099e+07 8197.17 1432.35 44.8605 34.4272 592010 16 48384 206250 147738030 31630031 101.558 101.558 -78103.4 -101.558 -21.5483 -0.29436 4.00754e+07 10425.4 12.96 33.40 3.60158 2.98811 0.1436 0.524 0.009362 0.4666
+k6_N10_I40_Fi6_L4_frac0_ff1_C50_45nm.xml LU32PEEng.v common 18536.01 171.79 771164 128 1574.86 -1 -1 298564 -1 -1 9168 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2254792 114 102 102506 101104 1 54645 9583 113 113 12769 clb auto 57.22 1140377 621.50 2.99 82.5548 -401072 -82.5548 82.5548 99.19 0.255533 0.212396 46.9133 35.1076 168 2650545 49 7.84268e+08 5.98238e+08 1.29354e+08 10130.3 15244.69 176.319 137.575 2419840 16 157631 707783 799129713 196621807 99.2105 99.2105 -551955 -99.2105 -24.4489 -0.174787 1.63768e+08 12825.4 78.06 246.54 14.0694 11.5903 0.5595 0.5581 0.00841 0.4335
+k6_N10_I40_Fi6_L4_frac0_ff1_C50_45nm.xml mcml.v common 15970.04 69.72 954644 75 9242.01 -1 -1 447788 -1 -1 8821 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2177828 36 33 134466 132924 1 42854 9076 111 111 12321 clb auto 35.86 573231 326.66 1.87 66.7581 -323714 -66.7581 66.7581 93.96 0.182667 0.153564 34.0224 26.2992 128 1364710 28 7.58755e+08 5.73176e+08 9.77457e+07 7933.26 5607.21 137 109.379 1277672 14 121045 425849 273752260 60018501 77.2353 77.2353 -483299 -77.2353 -0.278334 -0.0359377 1.23461e+08 10020.4 41.46 65.72 10.3642 8.98335 0.4153 0.4901 0.01174 0.4981
+k6_N10_I40_Fi6_L4_frac0_ff1_C50_45nm.xml mkDelayWorker32B.v common 88.98 1.22 79468 5 9.43 -1 -1 52416 -1 -1 503 506 47 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 275900 506 553 3285 3838 1 3016 1609 50 50 2500 memory auto 2.90 14311 6.96 0.06 6.38219 -1757.77 -6.38219 6.38219 17.95 0.0174293 0.0157669 3.43556 3.06356 38 25985 11 1.47946e+08 5.28654e+07 6.57953e+06 2631.81 29.78 7.96675 7.26188 25121 9 2666 3624 4420548 1130214 7.67786 7.67786 -2100.54 -7.67786 -2.47499 -0.295467 8.28755e+06 3315.02 2.75 1.00 0.370458 0.350057 0.1642 0.1493 0.03791 0.8128
+k6_N10_I40_Fi6_L4_frac0_ff1_C50_45nm.xml mkPktMerge.v common 25.18 0.13 17676 2 0.12 -1 -1 33676 -1 -1 32 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 91484 311 156 972 1128 1 953 514 28 28 784 memory auto 0.52 8023 0.96 0.01 3.88478 -4298.57 -3.88478 3.88478 2.22 0.00266285 0.00219368 0.422808 0.355243 38 16382 24 4.25198e+07 9.94461e+06 1.95643e+06 2495.44 14.31 1.60946 1.40321 14942 13 2264 2573 3388978 953144 4.55911 4.55911 -4999.52 -4.55911 -20.2607 -0.360359 2.46901e+06 3149.24 0.94 0.70 0.104467 0.0954877 0.08267 0.1662 0.01716 0.8167
+k6_N10_I40_Fi6_L4_frac0_ff1_C50_45nm.xml mkSMAdapter4B.v common 67.29 0.37 32716 7 3.13 -1 -1 37788 -1 -1 194 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 85148 193 205 2232 2437 1 1205 597 20 20 400 memory auto 0.62 9210 1.66 0.01 5.26404 -2858.15 -5.26404 5.26404 1.19 0.00295206 0.00251001 0.579448 0.465892 70 35409 42 2.07112e+07 1.31954e+07 1.68865e+06 4221.63 51.39 2.85458 2.44907 27566 13 4434 11662 6993194 1535696 6.50429 6.50429 -3495.8 -6.50429 -9.43179 -0.360359 2.11985e+06 5299.64 0.69 1.24 0.171743 0.156408 0.02837 0.292 0.02605 0.682
+k6_N10_I40_Fi6_L4_frac0_ff1_C50_45nm.xml or1200.v common 212.73 0.51 41620 27 6.45 -1 -1 43848 -1 -1 310 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 137004 385 394 3979 4310 1 2327 1092 27 27 729 io auto 1.86 32211 3.81 0.03 15.0264 -13246.9 -15.0264 15.0264 2.01 0.00713456 0.00639319 1.15787 0.96535 114 96682 36 3.93038e+07 1.81991e+07 4.86480e+06 6673.25 175.35 5.22171 4.50321 83153 11 8948 35465 23133387 4532281 18.9007 18.9007 -16220 -18.9007 0 0 6.14143e+06 8424.45 2.75 7.09 0.5408 0.478472 0.02753 0.5383 0.02381 0.4379
+k6_N10_I40_Fi6_L4_frac0_ff1_C50_45nm.xml raygentop.v common 63.55 0.40 33668 8 1.63 -1 -1 40540 -1 -1 164 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 87116 214 305 2625 2741 1 1484 692 22 22 484 mult_36 auto 0.65 12071 1.46 0.02 4.62805 -2632.35 -4.62805 4.62805 1.19 0.00360003 0.00317107 0.470832 0.401337 70 40205 19 2.50602e+07 1.24026e+07 2.07987e+06 4297.25 46.76 2.36446 2.10262 33588 11 5028 12606 7917289 1709081 6.56949 6.56949 -3486.24 -6.56949 0 0 2.60933e+06 5391.18 0.91 1.87 0.201998 0.186297 0.02455 0.5369 0.03533 0.4278
+k6_N10_I40_Fi6_L4_frac0_ff1_C50_45nm.xml sha.v common 860.19 1.32 38868 20 763.59 -1 -1 95372 -1 -1 260 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 98308 38 36 3404 3440 1 1302 334 21 21 441 clb auto 1.32 14960 1.47 0.01 14.3385 -4779.46 -14.3385 14.3385 1.04 0.00443092 0.00313353 0.571567 0.408247 102 55246 21 2.24358e+07 1.40124e+07 2.56171e+06 5808.86 72.68 2.72138 2.17406 47959 12 4715 21208 9952834 2213170 18.2505 18.2505 -5823.33 -18.2505 0 0 3.21213e+06 7283.74 1.21 2.56 0.35048 0.309577 0.01544 0.5055 0.02434 0.4701
diff --git a/vtr_flow/tasks/power/power_std/config/config.txt b/vtr_flow/tasks/power/power_std/config/config.txt
index d9a10998928..d6d0293e271 100644
--- a/vtr_flow/tasks/power/power_std/config/config.txt
+++ b/vtr_flow/tasks/power/power_std/config/config.txt
@@ -29,16 +29,20 @@ circuit_list_add=mkSMAdapter4B.v
circuit_list_add=or1200.v
circuit_list_add=raygentop.v
circuit_list_add=sha.v
-circuit_list_add=stereovision0.v
-circuit_list_add=stereovision1.v
-circuit_list_add=stereovision2.v
+#These circuits do not go through ACE2. It falsely thinks there are multiple clocks in the circuit. There is a bug with using module instantiation by port when two modules have different names for their clocks, in this case instantiation by name must be used. Tried altering the instantiation method & clock names but did not work. This fixed the error for raygentop.v
+#circuit_list_add=stereovision0.v
+#circuit_list_add=stereovision1.v
+#circuit_list_add=stereovision2.v
+
#circuit_list_add=stereovision3.v
# Add architectures to list to sweep
arch_list_add=k6_frac_N10_mem32K_40nm.xml
# Parse info and how to parse
-parse_file=vpr_power_detailed.txt
+#vpr_power_detailed.txt produces incompelete QoR results. (Issue #1749)
+#parse_file=vpr_power_detailed.txt
+parse_file=vpr_power.txt
# Pass requirements
-pass_requirements_file=pass_requirements.txt
+pass_requirements_file=pass_requirements_power.txt
diff --git a/vtr_flow/tasks/power/power_std/config/golden_results.txt b/vtr_flow/tasks/power/power_std/config/golden_results.txt
new file mode 100644
index 00000000000..9fc5461395a
--- /dev/null
+++ b/vtr_flow/tasks/power/power_std/config/golden_results.txt
@@ -0,0 +1,16 @@
+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 total_power routing_power_perc clock_power_perc tile_power_perc
+k6_frac_N10_mem32K_40nm.xml bgm.v common 993.16 23.30 392652 22 468.27 -1 -1 152632 -1 -1 2635 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 700260 257 32 32168 31683 1 18570 2935 62 62 3844 clb auto 33.81 251381 68.53 0.50 15.8414 -22071.7 -15.8414 15.8414 30.38 0.0762625 0.0556687 9.46634 6.97832 80 385161 34 2.30929e+08 1.46369e+08 2.08145e+07 5414.81 217.48 43.0199 34.032 362853 19 90380 408929 23298092 3778029 18.4127 18.4127 -25123.9 -18.4127 0 0 2.62565e+07 6830.53 8.54 10.36 5.01216 4.30582 0.1735 0.4466 0.02668 0.5267
+k6_frac_N10_mem32K_40nm.xml blob_merge.v common 147.36 0.58 59328 18 81.92 -1 -1 67544 -1 -1 567 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 162172 36 100 6600 6700 1 2796 703 30 30 900 clb auto 4.86 45280 5.70 0.04 9.00388 -2553.91 -9.00388 9.00388 2.23 0.0119654 0.0103369 2.00698 1.52489 64 69768 27 4.8774e+07 3.05579e+07 3.87092e+06 4301.02 28.28 7.19469 5.76621 65164 13 12410 63616 2886592 377212 10.3791 10.3791 -2909.67 -10.3791 0 0 4.83441e+06 5371.56 1.88 2.10 1.14247 0.975394 0.025 0.3666 0.03807 0.5953
+k6_frac_N10_mem32K_40nm.xml boundtop.v common 5.74 0.75 47016 2 0.40 -1 -1 36996 -1 -1 82 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 69520 114 192 455 647 1 312 388 13 13 169 clb auto 0.14 758 0.38 0.00 1.70835 -203.113 -1.70835 1.70835 0.26 0.000589842 0.000523076 0.107992 0.0947967 36 2211 20 6.63067e+06 4.41931e+06 367804. 2176.36 1.09 0.29774 0.266955 1762 13 705 924 61330 17686 2.27648 2.27648 -247.759 -2.27648 0 0 456028. 2698.39 0.08 0.04 0.0238337 0.0221336 0.00733 0.3528 0.09256 0.5546
+k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common 3.97 0.04 9292 3 0.23 -1 -1 36192 -1 -1 65 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 71000 99 130 363 493 1 251 295 12 12 144 clb auto 0.11 615 0.43 0.00 1.97933 -202.994 -1.97933 1.97933 0.19 0.000686016 0.000598315 0.11644 0.100167 46 1389 13 5.66058e+06 4.05111e+06 378970. 2631.74 1.13 0.303061 0.26742 1274 8 580 750 63298 22590 2.47625 2.47625 -241.499 -2.47625 0 0 486261. 3376.82 0.08 0.03 0.0135836 0.0125971 0.009076 0.2039 0.07227 0.7239
+k6_frac_N10_mem32K_40nm.xml diffeq1.v common 10.94 0.06 9048 15 0.36 -1 -1 34488 -1 -1 36 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 70356 162 96 999 932 1 693 299 16 16 256 mult_36 auto 0.25 5304 0.59 0.01 19.7038 -1798.95 -19.7038 19.7038 0.51 0.0029583 0.00269035 0.254881 0.228332 50 11378 23 1.21132e+07 3.92018e+06 780512. 3048.87 4.97 0.855992 0.780232 9589 21 3086 6045 1539878 392193 22.8395 22.8395 -2030.13 -22.8395 0 0 1.00276e+06 3917.05 0.29 0.55 0.185621 0.173456 0.007811 0.3508 0.0162 0.633
+k6_frac_N10_mem32K_40nm.xml diffeq2.v common 11.49 0.08 8312 14 0.27 -1 -1 33504 -1 -1 29 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 70252 66 96 719 590 1 525 198 18 18 324 mult_36 auto 0.26 4790 0.68 0.00 15.3213 -871.24 -15.3213 15.3213 0.59 0.00146855 0.00135568 0.370686 0.335826 38 11506 50 1.57076e+07 4.33493e+06 803540. 2480.06 6.03 0.98577 0.904424 10051 18 2900 6407 2371930 564906 18.2473 18.2473 -1032.11 -18.2473 0 0 1.01953e+06 3146.70 0.20 0.38 0.0775576 0.0729958 0.009421 0.3037 0.01834 0.678
+k6_frac_N10_mem32K_40nm.xml LU8PEEng.v common 1260.94 18.96 227648 129 265.44 -1 -1 100704 -1 -1 2014 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 610880 114 102 29578 29304 1 15300 2282 54 54 2916 clb auto 29.45 221607 50.06 0.32 71.2325 -55284.1 -71.2325 71.2325 22.37 0.0566456 0.0486916 9.55069 6.87794 94 337754 46 1.70873e+08 1.35826e+08 1.81141e+07 6211.98 750.60 42.8504 33.1133 303103 19 58820 237189 45913981 9240264 81.9617 81.9617 -68418.6 -81.9617 -17.9647 -0.295467 2.28201e+07 7825.81 7.26 14.48 4.67341 4.00067 0.1024 0.4121 0.01053 0.5774
+k6_frac_N10_mem32K_40nm.xml LU32PEEng.v common 8292.37 165.31 770524 128 1478.06 -1 -1 298496 -1 -1 7158 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 2183728 114 102 102506 101104 1 53881 7573 101 101 10201 clb auto 122.57 1091478 485.43 2.65 71.3486 -321265 -71.3486 71.3486 99.44 0.316499 0.22677 45.7049 33.1572 132 1443144 45 6.22828e+08 4.89923e+08 8.69606e+07 8524.71 5352.13 198.325 154.127 1362969 20 201471 870642 300733375 77624623 81.4008 81.4008 -459455 -81.4008 -25.9109 -0.17368 1.11338e+08 10914.4 45.81 117.21 17.3219 14.4488 0.4271 0.4811 0.009337 0.5095
+k6_frac_N10_mem32K_40nm.xml mcml.v common 11490.00 64.83 954212 75 8913.96 -1 -1 447636 -1 -1 5472 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 1916236 36 33 134466 132924 1 39653 5727 92 92 8464 memory auto 61.97 461165 222.95 1.31 58.0342 -281589 -58.0342 58.0342 78.37 0.199968 0.169035 33.8438 25.6696 84 676396 47 5.19428e+08 3.92705e+08 4.83041e+07 5707.00 1580.00 148.649 119.357 624063 21 149746 460070 93047904 23777435 65.3427 65.3427 -353766 -65.3427 -0.0861913 -0.0215478 6.13894e+07 7253.00 18.13 38.33 13.696 11.7956 0.2664 0.3611 0.01299 0.6259
+k6_frac_N10_mem32K_40nm.xml mkDelayWorker32B.v common 90.52 1.14 78816 5 8.08 -1 -1 52432 -1 -1 456 506 47 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 320252 506 553 3285 3838 1 3022 1562 50 50 2500 memory auto 3.44 13844 6.15 0.03 5.95267 -1737.1 -5.95267 5.95267 20.64 0.012365 0.010885 3.07062 2.74121 38 21834 15 1.47946e+08 5.03323e+07 6.86584e+06 2746.33 31.44 7.52573 6.8807 20620 16 4027 5047 3622996 886535 6.85724 6.85724 -2206.18 -6.85724 -7.78106 -0.293253 8.69095e+06 3476.38 2.53 1.21 0.586494 0.552676 0.1861 0.1281 0.03834 0.8336
+k6_frac_N10_mem32K_40nm.xml mkPktMerge.v common 21.18 0.18 16980 2 0.13 -1 -1 33668 -1 -1 27 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 90764 311 156 972 1128 1 953 509 28 28 784 memory auto 0.40 7827 1.40 0.01 3.90797 -4026.08 -3.90797 3.90797 2.49 0.00479418 0.0042137 0.633651 0.537307 36 14479 14 4.25198e+07 9.67514e+06 1.94918e+06 2486.20 11.03 1.87312 1.65376 13472 13 2891 3230 2215365 647096 4.52093 4.52093 -4789.05 -4.52093 -25.8456 -0.339827 2.40571e+06 3068.51 0.56 0.47 0.105075 0.0960577 0.08502 0.1435 0.01666 0.8399
+k6_frac_N10_mem32K_40nm.xml mkSMAdapter4B.v common 25.32 0.35 31892 7 3.04 -1 -1 37864 -1 -1 165 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 86940 193 205 2232 2437 1 1190 568 20 20 400 memory auto 1.30 8936 2.03 0.01 4.44855 -2528.04 -4.44855 4.44855 0.86 0.00314212 0.00272543 0.780105 0.626009 48 17495 46 2.07112e+07 1.16325e+07 1.23055e+06 3076.38 11.56 2.18786 1.84391 14708 14 4521 11092 1106779 263595 5.53986 5.53986 -2984.41 -5.53986 -4.85712 -0.29436 1.57502e+06 3937.55 0.30 0.38 0.183247 0.168496 0.0293 0.2036 0.02481 0.7716
+k6_frac_N10_mem32K_40nm.xml or1200.v common 72.49 0.59 40832 27 5.55 -1 -1 43848 -1 -1 259 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 116052 385 394 3979 4310 1 2379 1041 27 27 729 io auto 3.51 31242 3.76 0.03 13.271 -13061.1 -13.271 13.271 1.75 0.00736652 0.00662886 1.18375 0.987094 76 51110 29 3.93038e+07 1.54505e+07 3.58343e+06 4915.54 42.42 4.82241 4.19008 46131 14 10355 37426 3388428 639602 15.072 15.072 -14934.3 -15.072 0 0 4.48127e+06 6147.14 1.87 1.14 0.46423 0.424524 0.02317 0.4367 0.02471 0.5386
+k6_frac_N10_mem32K_40nm.xml raygentop.v common 27.80 0.39 32896 8 1.89 -1 -1 40484 -1 -1 107 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 88700 214 305 2625 2741 1 1449 635 22 22 484 mult_36 auto 1.82 11585 1.31 0.01 4.30664 -2400.31 -4.30664 4.30664 0.98 0.00341223 0.00302836 0.47218 0.408523 50 26386 46 2.50602e+07 9.33066e+06 1.56759e+06 3238.82 12.71 1.84859 1.63625 21391 21 7225 15930 4958964 1086872 5.40231 5.40231 -3027.78 -5.40231 0 0 2.01671e+06 4166.75 0.42 0.98 0.237377 0.217771 0.02275 0.432 0.03813 0.5299
+k6_frac_N10_mem32K_40nm.xml sha.v common 784.92 1.17 38104 20 756.44 -1 -1 95404 -1 -1 208 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing 98508 38 36 3404 3440 1 1281 282 19 19 361 clb auto 1.69 13341 1.43 0.01 11.5537 -3886.76 -11.5537 11.5537 0.65 0.00395868 0.00333349 0.590888 0.437396 56 21996 28 1.72706e+07 1.121e+07 1.27879e+06 3542.35 10.04 3.00182 2.48345 19799 15 5276 20061 681706 118206 14.2741 14.2741 -4632.48 -14.2741 0 0 1.63234e+06 4521.70 0.36 0.40 0.272269 0.243728 0.01026 0.3549 0.02594 0.6191
diff --git a/vtr_flow/tasks/regression_bidir/config/config.txt b/vtr_flow/tasks/regression_bidir/config/config.txt
deleted file mode 100644
index b9ecc1eb300..00000000000
--- a/vtr_flow/tasks/regression_bidir/config/config.txt
+++ /dev/null
@@ -1,21 +0,0 @@
-##############################################
-# Configuration file for running experiments
-##############################################
-
-# Path to directory of circuits to use
-circuits_dir=benchmarks/verilog
-
-# Path to directory of architectures to use
-archs_dir=arch/bidir
-
-# Add circuits to list to sweep
-circuit_list_add=ch_intrinsics.v
-
-# Add architectures to list to sweep
-arch_list_add=k4_n4_v7_bidir.xml
-
-# Parse info and how to parse
-parse_file=vpr_standard.txt
-
-# Pass requirements
-pass_requirements_file=pass_requirements.txt
diff --git a/vtr_flow/tasks/regression_bidir/config/golden_results.txt b/vtr_flow/tasks/regression_bidir/config/golden_results.txt
deleted file mode 100644
index 0798a9b1254..00000000000
--- a/vtr_flow/tasks/regression_bidir/config/golden_results.txt
+++ /dev/null
@@ -1,2 +0,0 @@
-arch circuit vpr_revision vpr_status error num_pre_packed_nets num_pre_packed_blocks num_post_packed_nets num_post_packed_blocks device_width device_height num_clb num_io num_outputs num_memories num_mult placed_wirelength_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est min_chan_width routed_wirelength min_chan_width_route_success_iteration crit_path_routed_wirelength crit_path_route_success_iteration critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile crit_path_routing_area_total crit_path_routing_area_per_tile odin_synth_time abc_synth_time abc_cec_time abc_sec_time ace_time pack_time place_time min_chan_width_route_time crit_path_route_time vtr_flow_elapsed_time max_vpr_mem max_odin_mem max_abc_mem
-k4_n4_v7_bidir.xml ch_intrinsics.v 30d086154 success 477 607 323 302 17 17 73 99 130 -1 -1 4323 7.15427 -644.01 -7.15427 13 2820 17 2655 18 9.92513 -904.128 -9.92513 0 0 6.75e+06 2.19e+06 -1 -1 -1 -1 0.03 0.01 -1 -1 -1 0.07 0.34 1.68 0.08 2.79 -1 -1 -1
diff --git a/vtr_flow/tasks/regression_fpu_hard_block_arch/config/config.txt b/vtr_flow/tasks/regression_fpu_hard_block_arch/config/config.txt
deleted file mode 100755
index 7e888b370a4..00000000000
--- a/vtr_flow/tasks/regression_fpu_hard_block_arch/config/config.txt
+++ /dev/null
@@ -1,32 +0,0 @@
-#
-############################################
-# Configuration file for running experiments
-##############################################
-
-# Path to directory of circuits to use
-circuits_dir=benchmarks/fpu/hardlogic
-
-# Path to directory of architectures to use
-archs_dir=arch/timing
-
-# Add circuits to list to sweep
-circuit_list_add=bfly.v
-circuit_list_add=bgm.v
-circuit_list_add=dscg.v
-circuit_list_add=fir.v
-circuit_list_add=mm3.v
-circuit_list_add=ode.v
-circuit_list_add=syn2.v
-circuit_list_add=syn7.v
-
-# Add architectures to list to sweep
-arch_list_add=hard_fpu_arch_timing.xml
-
-# Parse info and how to parse
-parse_file=vpr_hard_fpu.txt
-
-# Pass requirements
-pass_requirements_file=pass_requirements_fixed_chan_width.txt
-
-# Parameters for vtr flow
-script_params=-no_mem -vpr_route_chan_width 72 -vpr_cluster_seed_type max_inputs
diff --git a/vtr_flow/tasks/regression_fpu_hard_block_arch/config/golden_results.txt b/vtr_flow/tasks/regression_fpu_hard_block_arch/config/golden_results.txt
deleted file mode 100644
index 8f6ce817df8..00000000000
--- a/vtr_flow/tasks/regression_fpu_hard_block_arch/config/golden_results.txt
+++ /dev/null
@@ -1,9 +0,0 @@
-arch circuit min_chan_width_route_time crit_path_route_time vpr_revision vpr_status error num_pre_packed_nets num_pre_packed_blocks num_post_packed_nets num_post_packed_blocks device_width device_height num_clb num_io num_outputs num_memories num_mult num_fpu placed_wirelength_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est routed_wirelength crit_path_route_success_iteration critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS logic_block_area_total logic_block_area_used routing_area_total routing_area_per_tile pack_time place_time crit_path_route_time max_vpr_mem max_odin_mem max_abc_mem
-hard_fpu_arch_timing.xml bfly.v 1.15 1.15 30d086154 success 833 649 353 260 24 24 0 193 64 -1 -1 3 7751 2.985 -1309.88 -2.985 7158 5 2.985 -1353.41 -2.985 -1 -1 1.06129e+06 103149 1.28794e+06 2236.02 1.90 0.67 1.15 -1 -1 -1
-hard_fpu_arch_timing.xml bgm.v 8.35 8.35 30d086154 success 1281 693 1021 299 38 38 0 257 32 -1 -1 10 25456 2.985 -3103.91 -2.985 24104 19 2.985 -3437.93 -2.985 -1 -1 2.90196e+06 343832 3.35777e+06 2325.33 5.71 1.72 8.35 -1 -1 -1
-hard_fpu_arch_timing.xml dscg.v 5.30 5.30 30d086154 success 769 585 513 198 32 32 0 129 64 -1 -1 5 11247 2.985 -1352.85 -2.985 11193 18 2.985 -1507.79 -2.985 -1 -1 2.063e+06 171916 2.37490e+06 2319.23 4.39 0.85 5.30 -1 -1 -1
-hard_fpu_arch_timing.xml fir.v 1.83 1.83 30d086154 success 993 808 543 232 30 30 35 161 32 -1 -1 4 10396 2.985 -1321.5 -2.985 9078 16 2.985 -1439.96 -2.985 -1 -1 1.6779e+06 217760 2.03108e+06 2256.75 37.10 0.81 1.83 -1 -1 -1
-hard_fpu_arch_timing.xml mm3.v 0.51 0.51 30d086154 success 545 422 289 227 21 21 0 193 32 -1 -1 2 4808 2.985 -796.832 -2.985 4357 12 2.985 -808.072 -2.985 -1 -1 809148 68766.3 979092. 2220.16 1.02 0.43 0.51 -1 -1 -1
-hard_fpu_arch_timing.xml ode.v 0.82 0.82 30d086154 success 1194 1103 573 329 19 19 125 130 72 -1 -1 2 7946 2.985 -1338.84 -2.985 6856 9 2.985 -1405.11 -2.985 -1 -1 653279 355293 795482. 2203.55 34.32 0.65 0.82 -1 -1 -1
-hard_fpu_arch_timing.xml syn2.v 2.38 2.38 30d086154 success 641 490 479 293 30 30 0 161 128 -1 -1 4 11817 2.985 -1451.94 -2.985 10444 19 2.985 -1567.97 -2.985 -1 -1 1.6779e+06 137533 2.03108e+06 2256.75 1.21 0.89 2.38 -1 -1 -1
-hard_fpu_arch_timing.xml syn7.v 35.22 35.22 30d086154 success 1921 499 1703 310 54 54 0 161 128 -1 -1 21 76097 2.985 -7796.95 -2.985 59989 9 2.985 -8544.41 -2.985 -1 -1 6.08571e+06 722046 6.89978e+06 2366.18 1.66 4.28 35.22 -1 -1 -1
diff --git a/vtr_flow/tasks/regression_fpu_soft_logic_arch/config/config.txt b/vtr_flow/tasks/regression_fpu_soft_logic_arch/config/config.txt
deleted file mode 100755
index c3a90e46526..00000000000
--- a/vtr_flow/tasks/regression_fpu_soft_logic_arch/config/config.txt
+++ /dev/null
@@ -1,32 +0,0 @@
-#
-############################################
-# Configuration file for running experiments
-##############################################
-
-# Path to directory of circuits to use
-circuits_dir=benchmarks/fpu/softlogic
-
-# Path to directory of architectures to use
-archs_dir=arch/timing
-
-# Add circuits to list to sweep
-circuit_list_add=bfly.v
-circuit_list_add=bgm.v
-circuit_list_add=dscg.v
-circuit_list_add=fir.v
-circuit_list_add=mm3.v
-circuit_list_add=ode.v
-circuit_list_add=syn2.v
-# circuit_list_add=syn7.v # Cannot run this at channel width 72 because does not route
-
-# Add architectures to list to sweep
-arch_list_add=soft_fpu_arch_timing.xml
-
-# Parse info and how to parse
-parse_file=vpr_fixed_chan_width.txt
-
-# Pass requirements
-pass_requirements_file=pass_requirements_fixed_chan_width.txt
-
-# Parameters for vtr flow
-script_params=-no_mem -vpr_route_chan_width 72
diff --git a/vtr_flow/tasks/regression_fpu_soft_logic_arch/config/golden_results.txt b/vtr_flow/tasks/regression_fpu_soft_logic_arch/config/golden_results.txt
deleted file mode 100755
index e72523fa858..00000000000
--- a/vtr_flow/tasks/regression_fpu_soft_logic_arch/config/golden_results.txt
+++ /dev/null
@@ -1,8 +0,0 @@
-arch circuit vpr_revision vpr_status error num_pre_packed_nets num_pre_packed_blocks num_post_packed_nets num_post_packed_blocks device_width device_height num_clb num_io num_outputs num_memories num_mult placed_wirelength_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est routed_wirelength crit_path_route_success_iteration logic_block_area_total logic_block_area_used routing_area_total routing_area_per_tile critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS odin_synth_time abc_synth_time abc_cec_time abc_sec_time ace_time pack_time place_time crit_path_route_time vtr_flow_elapsed_time max_vpr_mem max_odin_mem max_abc_mem
-soft_fpu_arch_timing.xml bfly.v 30d086154 success 21428 21492 15809 5570 75 75 5313 193 64 -1 -1 1195432 37.5527 -10727.6 -37.5527 413177 26 1.22145e+07 1.21778e+07 1.34390e+07 2389.15 40.0815 -11382.8 -40.0815 -30.9576 -0.0851 3.05 0.30 -1 -1 -1 10.11 65.91 22.28 120.62 -1 -1 -1
-soft_fpu_arch_timing.xml bgm.v 30d086154 success 47249 47281 34602 12072 111 111 11783 257 32 -1 -1 3884086 40.195 -27340.8 -40.195 980899 26 2.72317e+07 2.70071e+07 2.96941e+07 2410.04 41.297 -28960.7 -41.297 -36.9193 -0.0851 12.70 0.78 -1 -1 -1 48.74 520.54 75.83 710.94 -1 -1 -1
-soft_fpu_arch_timing.xml dscg.v 30d086154 success 17701 17765 12924 4601 69 69 4408 129 64 -1 -1 894971 37.7555 -9413.39 -37.7555 332340 21 1.02892e+07 1.01036e+07 1.13481e+07 2383.55 38.2171 -9918.27 -38.2171 -29.785 -0.0851 3.36 0.32 -1 -1 -1 10.01 79.47 21.65 135.12 -1 -1 -1
-soft_fpu_arch_timing.xml fir.v 30d086154 success 20956 20988 15449 5391 75 75 5198 161 32 -1 -1 1172460 34.8219 -10424 -34.8219 374058 26 1.22145e+07 1.19143e+07 1.34390e+07 2389.15 36.3823 -11094.2 -36.3823 -30.6185 -0.0851 2.76 0.30 -1 -1 -1 12.15 99.80 29.81 165.52 -1 -1 -1
-soft_fpu_arch_timing.xml mm3.v 30d086154 success 15471 15503 11397 4053 64 64 3828 193 32 -1 -1 736956 34.5712 -7456.47 -34.5712 275738 25 8.81088e+06 8.77421e+06 9.74059e+06 2378.07 35.6735 -7853.8 -35.6735 -17.1051 -0.0851 1.57 0.21 -1 -1 -1 6.51 52.03 22.42 97.36 -1 -1 -1
-soft_fpu_arch_timing.xml ode.v 30d086154 success 10164 10236 7293 2690 52 52 2488 130 72 -1 -1 379123 33.3651 -5001.53 -33.3651 175069 26 5.73043e+06 5.70293e+06 6.38377e+06 2360.86 35.8313 -5285.77 -35.8313 -31.1862 -0.0851 1.66 0.21 -1 -1 -1 4.50 30.70 11.84 59.98 -1 -1 -1
-soft_fpu_arch_timing.xml syn2.v 30d086154 success 19489 19617 14367 5129 72 72 4840 161 128 -1 -1 1037592 35.1526 -9915.73 -35.1526 382798 26 1.12312e+07 1.10937e+07 1.23715e+07 2386.47 36.3648 -10499.4 -36.3648 -18.6928 -0.0851 3.90 0.36 -1 -1 -1 11.08 89.35 30.23 155.94 -1 -1 -1
diff --git a/vtr_flow/tasks/regression_mcnc/config/golden_results.txt b/vtr_flow/tasks/regression_mcnc/config/golden_results.txt
deleted file mode 100755
index 2799d40de28..00000000000
--- a/vtr_flow/tasks/regression_mcnc/config/golden_results.txt
+++ /dev/null
@@ -1,21 +0,0 @@
-arch circuit vpr_revision vpr_status error num_pre_packed_nets num_pre_packed_blocks num_post_packed_nets num_post_packed_blocks device_width device_height num_clb num_io num_outputs num_memories num_mult placed_wirelength_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est min_chan_width routed_wirelength min_chan_width_route_success_iteration crit_path_routed_wirelength crit_path_route_success_iteration critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile crit_path_routing_area_total crit_path_routing_area_per_tile odin_synth_time abc_synth_time abc_cec_time abc_sec_time ace_time pack_time place_time min_chan_width_route_time crit_path_route_time vtr_flow_elapsed_time max_vpr_mem max_odin_mem max_abc_mem
-k6_N10_40nm.xml alu4.pre-vpr.blif 30d086154 success 926 934 477 115 12 12 93 14 8 -1 -1 6282 4.40554 -31.5582 -4.40554 40 6544 16 6297 18 4.71972 -33.8691 -4.71972 0 0 5.3894e+06 5.01214e+06 346969. 2409.51 435722. 3025.85 -1 -1 -1 -1 -1 1.42 0.63 3.08 0.29 5.86 -1 -1 -1
-k6_N10_40nm.xml apex2.pre-vpr.blif 30d086154 success 1113 1116 641 149 13 13 108 38 3 -1 -1 10542 4.87555 -14.4261 -4.87555 58 13034 24 12011 20 5.13724 -15.1863 -5.13724 0 0 6.52117e+06 5.82055e+06 584019. 3455.73 741857. 4389.69 -1 -1 -1 -1 -1 0.98 0.97 5.68 0.55 8.65 -1 -1 -1
-k6_N10_40nm.xml apex4.pre-vpr.blif 30d086154 success 897 916 537 117 12 12 89 9 19 -1 -1 7861 4.67666 -73.0804 -4.67666 60 10715 42 9343 17 4.90275 -78.4088 -4.90275 0 0 5.3894e+06 4.79657e+06 505417. 3509.84 632511. 4392.44 -1 -1 -1 -1 -1 0.86 0.71 3.67 0.43 6.08 -1 -1 -1
-k6_N10_40nm.xml bigkey.pre-vpr.blif 30d086154 success 1364 1561 503 518 16 16 92 229 197 -1 -1 8461 2.49859 -624.203 -2.49859 38 7698 18 7213 19 2.76978 -723.548 -2.76978 0 0 1.05632e+07 4.95825e+06 632420. 2470.39 795593. 3107.78 -1 -1 -1 -1 -1 0.84 1.09 3.28 0.36 6.00 -1 -1 -1
-k6_N10_40nm.xml clma.pre-vpr.blif 30d086154 success 3672 3754 2299 502 21 21 358 62 82 -1 -1 56897 7.51433 -364.35 -7.51433 74 46078 27 44201 22 7.74002 -401.439 -7.74002 0 0 1.94557e+07 1.92941e+07 2.06377e+06 4679.75 2.56926e+06 5825.98 -1 -1 -1 -1 -1 3.88 5.73 21.65 2.45 35.10 -1 -1 -1
-k6_N10_40nm.xml des.pre-vpr.blif 30d086154 success 954 1199 596 571 18 18 70 256 245 -1 -1 10930 3.64649 -677.099 -3.64649 34 9426 31 8257 20 4.3436 -782.519 -4.3436 0 0 1.37969e+07 3.77258e+06 748928. 2311.50 917842. 2832.85 -1 -1 -1 -1 -1 0.34 1.05 2.36 0.29 4.41 -1 -1 -1
-k6_N10_40nm.xml diffeq.pre-vpr.blif 30d086154 success 1371 1410 588 197 12 12 94 64 39 -1 -1 6629 4.29949 -998.109 -4.29949 34 5938 25 5438 20 4.68767 -1073.21 -4.68767 0 0 5.3894e+06 5.06604e+06 307290. 2133.96 376278. 2613.04 -1 -1 -1 -1 -1 0.48 0.64 2.09 0.25 3.88 -1 -1 -1
-k6_N10_40nm.xml dsip.pre-vpr.blif 30d086154 success 1362 1559 527 517 16 16 91 229 197 -1 -1 9720 2.49628 -623.571 -2.49628 36 8661 24 8231 21 2.85657 -745.54 -2.85657 0 0 1.05632e+07 4.90435e+06 605313. 2364.50 744064. 2906.50 -1 -1 -1 -1 -1 0.93 1.17 3.60 0.39 6.53 -1 -1 -1
-k6_N10_40nm.xml elliptic.pre-vpr.blif 30d086154 success 3421 3535 1250 462 17 17 217 131 114 -1 -1 21010 6.86415 -3945.87 -6.86415 50 18908 42 16434 19 7.23344 -4315.99 -7.23344 0 0 1.21262e+07 1.1695e+07 907546. 3140.30 1.20603e+06 4173.11 -1 -1 -1 -1 -1 1.49 2.27 9.60 0.80 15.04 -1 -1 -1
-k6_N10_40nm.xml ex1010.pre-vpr.blif 30d086154 success 2659 2669 1396 285 19 19 265 10 10 -1 -1 31712 5.95872 -57.354 -5.95872 88 43202 29 40118 20 6.21184 -59.9851 -6.21184 0 0 1.55754e+07 1.42819e+07 1.92623e+06 5335.82 2.40765e+06 6669.39 -1 -1 -1 -1 -1 3.21 3.14 24.04 2.19 33.64 -1 -1 -1
-k6_N10_40nm.xml ex5p.pre-vpr.blif 30d086154 success 761 824 427 148 11 11 77 8 63 -1 -1 5498 3.65588 -160.336 -3.65588 50 6788 35 6024 18 4.10669 -184.16 -4.10669 0 0 4.36541e+06 4.14984e+06 346807. 2866.17 460672. 3807.21 -1 -1 -1 -1 -1 0.82 0.59 2.05 0.29 4.13 -1 -1 -1
-k6_N10_40nm.xml frisc.pre-vpr.blif 30d086154 success 3175 3291 1259 364 18 18 228 20 116 -1 -1 24921 7.57606 -4118.34 -7.57606 62 26350 22 22700 16 8.04046 -4445.13 -8.04046 0 0 1.37969e+07 1.22878e+07 1.27511e+06 3935.53 1.56830e+06 4840.43 -1 -1 -1 -1 -1 1.57 2.80 12.02 0.97 18.27 -1 -1 -1
-k6_N10_40nm.xml misex3.pre-vpr.blif 30d086154 success 828 842 451 111 12 12 83 14 14 -1 -1 6310 4.18059 -54.4041 -4.18059 40 7240 38 6680 19 4.50783 -59.6217 -4.50783 0 0 5.3894e+06 4.4732e+06 346969. 2409.51 435722. 3025.85 -1 -1 -1 -1 -1 0.98 0.63 2.40 0.40 4.78 -1 -1 -1
-k6_N10_40nm.xml pdc.pre-vpr.blif 30d086154 success 2839 2879 1457 339 19 19 283 16 40 -1 -1 32609 6.12486 -222.536 -6.12486 76 38722 29 35970 20 6.48833 -238.077 -6.48833 0 0 1.55754e+07 1.5252e+07 1.69786e+06 4703.20 2.10944e+06 5843.31 -1 -1 -1 -1 -1 4.17 3.46 14.88 1.94 25.69 -1 -1 -1
-k6_N10_40nm.xml s298.pre-vpr.blif 30d086154 success 726 732 374 82 11 11 72 4 6 -1 -1 4632 5.57792 -45.6578 -5.57792 40 5876 24 5450 20 6.04619 -52.6309 -6.04619 0 0 4.36541e+06 3.88037e+06 284999. 2355.36 358204. 2960.36 -1 -1 -1 -1 -1 0.92 0.45 2.36 0.30 4.36 -1 -1 -1
-k6_N10_40nm.xml s38417.pre-vpr.blif 30d086154 success 4782 4888 2172 492 21 21 357 29 106 -1 -1 42993 4.58603 -3433.21 -4.58603 40 23114 28 21518 22 5.11358 -3734.12 -5.11358 0 0 1.94557e+07 1.92402e+07 1.17842e+06 2672.15 1.47671e+06 3348.55 -1 -1 -1 -1 -1 2.03 4.01 6.05 1.09 14.39 -1 -1 -1
-k6_N10_40nm.xml s38584.1.pre-vpr.blif 30d086154 success 4457 4761 2139 674 21 21 332 38 304 -1 -1 44053 4.04847 -2927.82 -4.04847 44 24999 28 22006 20 4.63096 -3210.71 -4.63096 0 0 1.94557e+07 1.78928e+07 1.27749e+06 2896.80 1.65404e+06 3750.67 -1 -1 -1 -1 -1 1.47 4.07 5.46 1.02 13.21 -1 -1 -1
-k6_N10_40nm.xml seq.pre-vpr.blif 30d086154 success 1006 1041 581 174 12 12 98 41 35 -1 -1 8559 4.35251 -122.979 -4.35251 58 10680 22 10003 19 4.56915 -134.621 -4.56915 0 0 5.3894e+06 5.28161e+06 488429. 3391.87 620391. 4308.27 -1 -1 -1 -1 -1 1.03 0.92 4.07 0.46 6.93 -1 -1 -1
-k6_N10_40nm.xml spla.pre-vpr.blif 30d086154 success 2232 2278 1146 284 17 17 222 16 46 -1 -1 22691 5.63391 -190.594 -5.63391 64 26019 25 25946 23 6.12471 -211.056 -6.12471 0 0 1.21262e+07 1.19645e+07 1.16329e+06 4025.22 1.44914e+06 5014.31 -1 -1 -1 -1 -1 3.37 2.19 8.08 1.24 15.69 -1 -1 -1
-k6_N10_40nm.xml tseng.pre-vpr.blif 30d086154 success 1461 1583 508 277 13 13 103 52 122 -1 -1 6291 4.48051 -1117.23 -4.48051 32 5407 13 4887 15 4.79129 -1242.35 -4.79129 0 0 6.52117e+06 5.55108e+06 352895. 2088.14 431135. 2551.09 -1 -1 -1 -1 -1 0.40 0.60 1.91 0.16 3.46 -1 -1 -1
diff --git a/vtr_flow/tasks/regression_tests/README.md b/vtr_flow/tasks/regression_tests/README.md
index 7b29e764f3b..70a224f77f8 100644
--- a/vtr_flow/tasks/regression_tests/README.md
+++ b/vtr_flow/tasks/regression_tests/README.md
@@ -73,40 +73,41 @@ Create golden results with:
/parse_vtr_task.py -create_golden -l /regression_tests/vtr_reg_strong/task_list.txt
```
-## LEVEL THREE - Nightly VTR Regression - `vtr_reg_nightly`
+## LEVEL THREE - Nightly VTR Regression - `vtr_reg_nightly_test#`
- * To be run by automated build system every night.
+ * To be run by automated build system every night and on every pull request.
+ * To keep the wall-clock time of this suite under ~4 hours using -j8, it is divided into multiple sub-suites, and each of them are submitted as different jobs to different kokoro machines.
* Estimated Runtime: ~15-20 hours
DO-IT-ALL COMMAND - This command will execute, parse, and check results.
```
-./run_reg_test.py vtr_reg_nightly
+./run_reg_test.py vtr_reg_nightly_test#
./run_reg_test.py vtr_reg_valgrind
```
To create golden results, use:
```
-./run_reg_test.py -create_golden vtr_reg_nightly
+./run_reg_test.py -create_golden vtr_reg_nightly_test#
```
Execute with:
```
-/run_vtr_task.py -l /regression_tests/vtr_reg_nightly/task_list.txt
+/run_vtr_task.py -l /regression_tests/vtr_reg_nightly_test#/task_list.txt
```
Parse results with:
```
-/parse_vtr_task.py -l /regression_tests/vtr_reg_nightly/task_list.txt
+/parse_vtr_task.py -l /regression_tests/vtr_reg_nightly_test#/task_list.txt
```
Check results with:
```
-/parse_vtr_task.py -check_golden -l /regression_tests/vtr_reg_nightly/task_list.txt
+/parse_vtr_task.py -check_golden -l /regression_tests/vtr_reg_nightly_test#/task_list.txt
```
Create golden results with:
```
-/parse_vtr_task.py -create_golden -l /regression_tests/vtr_reg_nightly/task_list.txt
+/parse_vtr_task.py -create_golden -l /regression_tests/vtr_reg_nightly_test#/task_list.txt
```
diff --git a/vtr_flow/tasks/regression_tests/README_nightly_regression_parallelism.md b/vtr_flow/tasks/regression_tests/README_nightly_regression_parallelism.md
new file mode 100644
index 00000000000..2734491bf9c
--- /dev/null
+++ b/vtr_flow/tasks/regression_tests/README_nightly_regression_parallelism.md
@@ -0,0 +1,18 @@
+# Parallesim Startegy for vtr_reg_nightly:
+## Current Sub-suites:
+
+ * The nightly regression suite is broken up into multiple sub-suites to minimize the wall-clock when ran by CI using Kokoro machines.
+ * The lower bound for the run-time of the nightly regression tests is the longest vtr_flow run in all suites (currently this flow is in vtr_reg_nightly_test2/vtr_reg_qor)
+ * To minimize wall-clock time, tasks which have the three longest flow runs are put in seperate directories and other tasks are added to keep the
+ run-time for the sub-suite under ~4 hours using -j8.
+ * The longest tasks are put at the bottom of task_list.txt to get started first (the files are read in backwards in `run_reg_test.py`
+ * If tasks that do not have long flow runs are to be added, it is best that they are added under vtr_reg_nightly_test1 as this suite has the smallest run-time
+ of all suites (~2 hours using -j8).
+ * If tasks with long flows that exceed ~1.5-2 hours are to be added, it is best to seperate them from the other suites and put it in a seperate test
+ at the bottom of the task list.
+
+## Adding Sub-suites:
+ * To add additional suites, a config file (.cfg) has to be added to [the config list for Kokoro machines](https://github.com/verilog-to-routing/vtr-verilog-to-routing/tree/master/.github/kokoro/presubmit). The new config should be indentical to the other config file for nightly tests, with the only difference being the value for VTR_TEST (i.e. the value should be changed to the directory name for the new suite).
+
+
+
diff --git a/vtr_flow/tasks/regression_mcnc/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_basic/regression_mcnc/config/config.txt
similarity index 70%
rename from vtr_flow/tasks/regression_mcnc/config/config.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_basic/regression_mcnc/config/config.txt
index 2e3fbb1a1eb..c1e990a3ef5 100755
--- a/vtr_flow/tasks/regression_mcnc/config/config.txt
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_basic/regression_mcnc/config/config.txt
@@ -25,7 +25,8 @@ circuit_list_add=frisc.pre-vpr.blif
circuit_list_add=misex3.pre-vpr.blif
circuit_list_add=pdc.pre-vpr.blif
circuit_list_add=s298.pre-vpr.blif
-circuit_list_add=s38417.pre-vpr.blif
+#The test appears to reach a time-limit and exits. Logical equivalence is UNDECIDED (not false). Tried running combinational verification instead of sequential verification manually on ABC. Since VPR changes the names of elements, this is not an appropriate verification method.
+#circuit_list_add=s38417.pre-vpr.blif
circuit_list_add=s38584.1.pre-vpr.blif
circuit_list_add=seq.pre-vpr.blif
circuit_list_add=spla.pre-vpr.blif
@@ -40,5 +41,6 @@ parse_file=vpr_standard.txt
# Pass requirements
pass_requirements_file=pass_requirements.txt
-script_params=-no_mem -starting_stage vpr -check_equivalent
+#
+script_params=-starting_stage vpr --gen_post_synthesis_netlist on -check_equivalent --sweep_dangling_primary_ios off --sweep_constant_primary_outputs off --absorb_buffer_luts off
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_basic/regression_mcnc/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_basic/regression_mcnc/config/golden_results.txt
new file mode 100644
index 00000000000..12b0d594c61
--- /dev/null
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_basic/regression_mcnc/config/golden_results.txt
@@ -0,0 +1,20 @@
+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
+k6_N10_40nm.xml alu4.pre-vpr.blif common 3.52 -1 -1 -1 -1 -1 -1 -1 -1 -1 96 14 -1 -1 success v8.0.0-3535-ge4ce792ea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-17T19:06:09 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 39200 14 8 926 934 0 478 118 12 12 144 clb auto 0.26 4814 0.32 0.00 4.30446 -30.6997 -4.30446 nan 0.19 0.000981333 0.000729173 0.117615 0.0891761 50 7232 34 5.3894e+06 5.17382e+06 421775. 2928.99 1.12 0.401681 0.320913 6718 23 4858 21190 769655 129296 4.79255 nan -33.517 -4.79255 0 0 539713. 3748.01 0.09 0.20 0.0792381 0.0681409
+k6_N10_40nm.xml apex2.pre-vpr.blif common 7.38 -1 -1 -1 -1 -1 -1 -1 -1 -1 114 38 -1 -1 success v8.0.0-3535-ge4ce792ea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-17T19:06:09 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 45360 39 3 1113 1117 0 655 156 13 13 169 clb auto 0.38 7906 0.58 0.00 5.50405 -15.8747 -5.50405 nan 0.23 0.00130845 0.000933934 0.182058 0.134264 70 13267 32 6.52117e+06 6.14392e+06 701340. 4149.94 4.24 0.760478 0.598081 11701 23 5908 28300 1256093 177235 5.68519 nan -16.716 -5.68519 0 0 875860. 5182.60 0.15 0.27 0.0975177 0.0848641
+k6_N10_40nm.xml apex4.pre-vpr.blif common 3.82 -1 -1 -1 -1 -1 -1 -1 -1 -1 95 9 -1 -1 success v8.0.0-3535-ge4ce792ea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-17T19:06:09 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 40120 9 19 897 916 0 536 123 12 12 144 clb auto 0.30 6374 0.35 0.00 4.61877 -75.0193 -4.61877 nan 0.19 0.00100258 0.000740471 0.119521 0.0911157 70 10066 28 5.3894e+06 5.11993e+06 586610. 4073.68 1.48 0.394256 0.315564 9147 25 5449 27385 1182325 172059 4.91405 nan -80.9103 -4.91405 0 0 732627. 5087.69 0.12 0.25 0.0887408 0.0776228
+k6_N10_40nm.xml bigkey.pre-vpr.blif common 5.28 -1 -1 -1 -1 -1 -1 -1 -1 -1 94 229 -1 -1 success v8.0.0-3535-ge4ce792ea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-17T19:06:09 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 47976 263 197 1372 1603 1 490 554 17 17 289 io auto 0.21 4524 0.67 0.01 2.60008 -650.597 -2.60008 2.60008 0.44 0.0015296 0.00127211 0.196951 0.164542 34 8009 45 1.21262e+07 5.06604e+06 661981. 2290.59 2.28 0.650584 0.563315 7362 18 2388 12207 687931 134699 2.98622 2.98622 -761.04 -2.98622 0 0 811075. 2806.49 0.16 0.18 0.0793216 0.0714196
+k6_N10_40nm.xml clma.pre-vpr.blif common 27.11 -1 -1 -1 -1 -1 -1 -1 -1 -1 380 62 -1 -1 success v8.0.0-3535-ge4ce792ea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-17T19:06:09 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 100484 383 82 3674 4077 1 2327 845 22 22 484 clb auto 1.22 30799 4.22 0.03 7.81815 -317.417 -7.81815 7.81815 0.90 0.0059914 0.00372653 1.01679 0.666279 86 48554 35 2.15576e+07 2.04797e+07 2.58188e+06 5334.46 11.26 3.23066 2.36536 44729 26 20973 95393 4959730 642131 8.00909 8.00909 -350.887 -8.00909 0 0 3.23937e+06 6692.90 0.67 1.34 0.475046 0.39322
+k6_N10_40nm.xml des.pre-vpr.blif common 5.25 -1 -1 -1 -1 -1 -1 -1 -1 -1 99 256 -1 -1 success v8.0.0-3535-ge4ce792ea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-17T19:06:09 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 42744 256 245 954 1199 0 610 600 18 18 324 io auto 0.16 4894 0.58 0.01 3.59246 -679.876 -3.59246 nan 0.52 0.00156703 0.00138989 0.171411 0.151208 34 7704 36 1.37969e+07 5.33551e+06 748928. 2311.50 2.03 0.599611 0.542463 7041 19 2784 6772 372605 79648 3.963 nan -754.212 -3.963 0 0 917842. 2832.85 0.19 0.13 0.0758948 0.070432
+k6_N10_40nm.xml diffeq.pre-vpr.blif common 3.58 -1 -1 -1 -1 -1 -1 -1 -1 -1 97 64 -1 -1 success v8.0.0-3535-ge4ce792ea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-17T19:06:09 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 39132 64 39 1371 1410 1 553 200 12 12 144 clb auto 0.23 3692 0.32 0.00 4.72655 -954.904 -4.72655 4.72655 0.19 0.00100861 0.00082038 0.120004 0.0922416 36 5140 29 5.3894e+06 5.22772e+06 320399. 2224.99 0.91 0.403539 0.327736 4761 27 3087 10851 419353 73563 5.50221 5.50221 -1088.02 -5.50221 0 0 394751. 2741.33 0.07 0.14 0.0817274 0.0709849
+k6_N10_40nm.xml dsip.pre-vpr.blif common 4.74 -1 -1 -1 -1 -1 -1 -1 -1 -1 95 229 -1 -1 success v8.0.0-3535-ge4ce792ea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-17T19:06:09 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 44888 229 197 1370 1567 1 535 521 16 16 256 io auto 0.22 4506 0.66 0.01 2.49408 -629.437 -2.49408 2.49408 0.38 0.00154264 0.00127544 0.190288 0.157275 34 8719 42 1.05632e+07 5.11993e+06 580208. 2266.44 1.84 0.577019 0.495515 7623 24 2986 11751 735573 151858 3.03309 3.03309 -756.901 -3.03309 0 0 710900. 2776.95 0.14 0.21 0.100002 0.090087
+k6_N10_40nm.xml elliptic.pre-vpr.blif common 16.13 -1 -1 -1 -1 -1 -1 -1 -1 -1 230 131 -1 -1 success v8.0.0-3535-ge4ce792ea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-17T19:06:09 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 68792 131 114 3421 3535 1 1217 475 18 18 324 clb auto 0.69 11509 1.15 0.01 6.7484 -4002.56 -6.7484 6.7484 0.53 0.00331781 0.00228781 0.395444 0.281229 48 19779 41 1.37969e+07 1.23956e+07 993200. 3065.43 4.82 1.41361 1.09099 17206 27 8575 39180 1893706 281944 7.28092 7.28092 -4693.1 -7.28092 0 0 1.27511e+06 3935.53 0.25 0.53 0.249735 0.209131
+k6_N10_40nm.xml ex1010.pre-vpr.blif common 23.56 -1 -1 -1 -1 -1 -1 -1 -1 -1 302 10 -1 -1 success v8.0.0-3535-ge4ce792ea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-17T19:06:09 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 81084 10 10 2659 2669 0 1417 322 20 20 400 clb auto 1.05 26554 1.63 0.01 6.16799 -60.2696 -6.16799 nan 0.66 0.00368526 0.0025354 0.472463 0.333483 88 48623 40 1.74617e+07 1.6276e+07 2.14967e+06 5374.18 15.21 2.15767 1.60935 42086 26 13627 85296 5269084 608977 6.66736 nan -64.4644 -6.66736 0 0 2.68685e+06 6717.13 0.51 1.18 0.326258 0.266174
+k6_N10_40nm.xml ex5p.pre-vpr.blif common 3.67 -1 -1 -1 -1 -1 -1 -1 -1 -1 78 8 -1 -1 success v8.0.0-3535-ge4ce792ea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-17T19:06:09 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 37004 8 63 761 824 0 443 149 11 11 121 clb auto 0.22 4417 0.29 0.00 3.78797 -168.76 -3.78797 nan 0.15 0.000842121 0.000625779 0.0951432 0.0725943 56 7756 40 4.36541e+06 4.20373e+06 384634. 3178.79 1.84 0.429632 0.34709 6720 27 5012 21593 1018121 163519 4.35912 nan -191.647 -4.35912 0 0 491412. 4061.26 0.08 0.21 0.0711569 0.061656
+k6_N10_40nm.xml frisc.pre-vpr.blif common 14.24 -1 -1 -1 -1 -1 -1 -1 -1 -1 240 20 -1 -1 success v8.0.0-3535-ge4ce792ea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-17T19:06:09 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 68700 20 116 3175 3291 1 1254 376 18 18 324 clb auto 0.69 15344 1.14 0.01 8.10932 -4228.26 -8.10932 8.10932 0.51 0.00275 0.00198929 0.360382 0.268421 64 24921 47 1.37969e+07 1.29346e+07 1.31637e+06 4062.87 4.62 1.35464 1.0511 21994 33 9165 39291 2143763 310219 9.04024 9.04024 -4776.93 -9.04024 0 0 1.63962e+06 5060.55 0.34 0.75 0.345746 0.283362
+k6_N10_40nm.xml misex3.pre-vpr.blif common 3.70 -1 -1 -1 -1 -1 -1 -1 -1 -1 87 14 -1 -1 success v8.0.0-3535-ge4ce792ea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-17T19:06:09 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 36872 14 14 828 842 0 488 115 12 12 144 clb auto 0.25 4803 0.29 0.00 4.09122 -53.5889 -4.09122 nan 0.19 0.000876854 0.000684055 0.104159 0.0794147 48 8135 43 5.3894e+06 4.68878e+06 408411. 2836.19 1.36 0.388988 0.311789 7235 33 5301 23317 977390 159676 4.95088 nan -62.7442 -4.95088 0 0 523024. 3632.11 0.09 0.23 0.086753 0.0748506
+k6_N10_40nm.xml pdc.pre-vpr.blif common 24.26 -1 -1 -1 -1 -1 -1 -1 -1 -1 307 16 -1 -1 success v8.0.0-3535-ge4ce792ea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-17T19:06:09 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 83344 16 40 2839 2879 0 1501 363 20 20 400 clb auto 0.89 24957 1.71 0.01 6.14413 -225.571 -6.14413 nan 0.71 0.00410999 0.00288584 0.52749 0.350613 78 42446 48 1.74617e+07 1.65455e+07 1.93229e+06 4830.73 13.58 2.30066 1.69075 37766 24 13244 77776 3921239 502795 6.83041 nan -244.653 -6.83041 0 0 2.43175e+06 6079.38 0.55 1.33 0.470489 0.400283
+k6_N10_40nm.xml s298.pre-vpr.blif common 3.26 -1 -1 -1 -1 -1 -1 -1 -1 -1 77 4 -1 -1 success v8.0.0-3535-ge4ce792ea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-17T19:06:09 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 35212 4 6 726 732 1 378 87 11 11 121 clb auto 0.21 3716 0.23 0.00 5.71121 -46.2336 -5.71121 5.71121 0.15 0.000846857 0.000638317 0.0950246 0.0735267 44 6280 41 4.36541e+06 4.14984e+06 309216. 2555.51 1.10 0.333571 0.271218 5365 29 4054 22082 941035 143823 5.8999 5.8999 -49.9378 -5.8999 0 0 401578. 3318.83 0.07 0.20 0.0727852 0.0637362
+k6_N10_40nm.xml s38584.1.pre-vpr.blif common 24.04 -1 -1 -1 -1 -1 -1 -1 -1 -1 368 38 -1 -1 success v8.0.0-3535-ge4ce792ea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-17T19:06:09 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 88992 39 304 4677 4982 1 2229 711 22 22 484 clb auto 0.83 15536 1.93 0.02 4.41692 -2935.09 -4.41692 4.41692 0.91 0.00455311 0.00312826 0.566365 0.398763 46 23136 35 2.15576e+07 1.9833e+07 1.47372e+06 3044.87 4.09 1.88886 1.46252 21484 26 12644 35500 1633261 291191 5.11746 5.11746 -3317.26 -5.11746 0 0 1.89173e+06 3908.53 0.37 0.59 0.334044 0.277708
+k6_N10_40nm.xml seq.pre-vpr.blif common 4.44 -1 -1 -1 -1 -1 -1 -1 -1 -1 103 41 -1 -1 success v8.0.0-3535-ge4ce792ea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-17T19:06:09 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 41704 41 35 1006 1041 0 588 179 13 13 169 clb auto 0.34 6825 0.44 0.00 4.2488 -124.521 -4.2488 nan 0.23 0.00110795 0.000810473 0.135138 0.102529 62 11140 29 6.52117e+06 5.55108e+06 625464. 3700.97 1.71 0.446736 0.354571 10150 27 6502 31106 1376375 204918 4.67375 nan -137.385 -4.67375 0 0 769731. 4554.62 0.13 0.29 0.0947632 0.0818525
+k6_N10_40nm.xml spla.pre-vpr.blif common 13.24 -1 -1 -1 -1 -1 -1 -1 -1 -1 245 16 -1 -1 success v8.0.0-3535-ge4ce792ea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-17T19:06:09 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 68928 16 46 2232 2278 0 1154 307 18 18 324 clb auto 0.70 16481 1.27 0.01 5.54429 -185.233 -5.54429 nan 0.53 0.00333044 0.00215766 0.403298 0.274104 66 28478 42 1.37969e+07 1.3204e+07 1.36437e+06 4211.00 5.45 1.36982 1.02511 25314 24 10149 58436 2749061 372378 6.29168 nan -209.894 -6.29168 0 0 1.68162e+06 5190.19 0.31 0.71 0.243249 0.205711
+k6_N10_40nm.xml tseng.pre-vpr.blif common 3.10 -1 -1 -1 -1 -1 -1 -1 -1 -1 110 52 -1 -1 success v8.0.0-3535-ge4ce792ea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-17T19:06:09 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 41848 52 122 1461 1583 1 509 284 13 13 169 clb auto 0.20 3038 0.34 0.00 4.30331 -1151.35 -4.30331 4.30331 0.23 0.00101855 0.000840928 0.116122 0.0910782 32 4735 27 6.52117e+06 5.92834e+06 352895. 2088.14 0.55 0.294288 0.241684 4322 22 2468 7314 316742 64936 5.22444 5.22444 -1305.28 -5.22444 0 0 431135. 2551.09 0.08 0.11 0.0698875 0.0612333
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_multiclock/task_list.txt b/vtr_flow/tasks/regression_tests/vtr_reg_multiclock/task_list.txt
index 30d45f589c9..00ba1689b32 100644
--- a/vtr_flow/tasks/regression_tests/vtr_reg_multiclock/task_list.txt
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_multiclock/task_list.txt
@@ -1,4 +1,4 @@
-func_multiclock/once
-func_multiclock/iterative
-func_multiclock/vanilla
-func_multiclock/blanket
+regression_tests/vtr_reg_nightly_basic/func_multiclock/blanket
+regression_tests/vtr_reg_nightly_basic/func_multiclock/iterative
+regression_tests/vtr_reg_nightly_basic/func_multiclock/once
+regression_tests/vtr_reg_nightly_basic/func_multiclock/vanilla
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/task_list.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly/task_list.txt
deleted file mode 100644
index 8bf2bc3db9e..00000000000
--- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/task_list.txt
+++ /dev/null
@@ -1,17 +0,0 @@
-regression_tests/vtr_reg_nightly/vpr_reg_mcnc
-regression_tests/vtr_reg_nightly/vtr_reg_qor_chain
-regression_tests/vtr_reg_nightly/vtr_reg_qor_chain_depop
-regression_tests/vtr_reg_nightly/vtr_reg_netlist_writer
-regression_tests/vtr_reg_nightly/vtr_func_formal
-regression_tests/vtr_reg_nightly/titan_quick_qor
-regression_tests/vtr_reg_nightly/titan_other
-regression_tests/vtr_reg_nightly/vtr_bidir
-regression_tests/vtr_reg_nightly/complex_switch
-regression_tests/vtr_reg_nightly/vpr_verify_rr_graph
-regression_tests/vtr_reg_nightly/vpr_verify_rr_graph_bidir
-regression_tests/vtr_reg_nightly/vpr_verify_rr_graph_complex_switch
-regression_tests/vtr_reg_nightly/vpr_verify_rr_graph_titan
-regression_tests/vtr_reg_nightly/vpr_verify_rr_graph_error_check
-regression_tests/vtr_reg_nightly/vtr_timing_update_diff
-regression_tests/vtr_reg_nightly/vtr_timing_update_diff_titan
-regression_tests/vtr_reg_nightly/symbiflow
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vpr_reg_mcnc/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vpr_reg_mcnc/config/golden_results.txt
deleted file mode 100644
index 08900d9d5ef..00000000000
--- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vpr_reg_mcnc/config/golden_results.txt
+++ /dev/null
@@ -1,21 +0,0 @@
- 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 placement_technique reward uniform_percentage median_percentage wmedian_percentage wcent_percentage fr_percentage critUni_percentage centroid_percentage
- k6_frac_N10_40nm.xml alu4.pre-vpr.blif common 4.36 -1 -1 -1 -1 -1 -1 -1 -1 -1 78 14 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 38776 14 8 926 934 0 489 100 11 11 121 clb auto 0.72 4606 0.40 0.00 4.14102 -29.7523 -4.14102 nan 0.20 0.00119633 0.000925792 0.161892 0.121595 52 7437 24 4.36541e+06 4.20373e+06 379421. 3135.71 1.84 0.693864 0.555835 6938 19 3079 14370 484288 90595 4.83499 nan -34.8915 -4.83499 0 0 499620. 4129.09 0.10 0.22 0.120458 0.108216 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1
- k6_frac_N10_40nm.xml apex2.pre-vpr.blif common 6.83 -1 -1 -1 -1 -1 -1 -1 -1 -1 100 38 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 47192 38 3 1113 1116 0 660 141 12 12 144 clb auto 1.02 7385 0.50 0.00 4.95175 -14.4002 -4.95175 nan 0.19 0.00132372 0.000956629 0.169375 0.127544 72 12351 45 5.3894e+06 5.3894e+06 636745. 4421.84 3.83 0.772079 0.612161 11456 17 4645 24063 904212 148872 5.55636 nan -16.3985 -5.55636 0 0 794932. 5520.36 0.12 0.24 0.0973796 0.0861951 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1
- k6_frac_N10_40nm.xml apex4.pre-vpr.blif common 3.96 -1 -1 -1 -1 -1 -1 -1 -1 -1 81 9 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 39408 9 19 897 916 0 559 109 11 11 121 clb auto 0.84 6066 0.35 0.00 4.29231 -70.9295 -4.29231 nan 0.16 0.00102617 0.000754225 0.125046 0.0955529 72 10169 35 4.36541e+06 4.36541e+06 523260. 4324.46 1.54 0.445493 0.355552 9121 18 3785 19131 685405 121198 5.08251 nan -82.3409 -5.08251 0 0 653410. 5400.08 0.10 0.20 0.083959 0.0750954 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1
- k6_frac_N10_40nm.xml bigkey.pre-vpr.blif common 6.20 -1 -1 -1 -1 -1 -1 -1 -1 -1 71 229 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 45768 229 197 1364 1561 1 539 497 16 16 256 io auto 0.62 4443 0.64 0.01 2.40107 -604.293 -2.40107 2.40107 0.52 0.0015757 0.0013551 0.205205 0.17354 40 7623 19 1.05632e+07 3.82647e+06 697968. 2726.44 2.92 0.747446 0.656044 7058 12 1744 4785 241404 52708 3.01949 3.01949 -726.043 -3.01949 0 0 870840. 3401.72 0.22 0.16 0.101605 0.0935094 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1
- k6_frac_N10_40nm.xml clma.pre-vpr.blif common 24.65 -1 -1 -1 -1 -1 -1 -1 -1 -1 306 62 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 92200 62 82 3672 3754 1 2349 450 20 20 400 clb auto 2.74 28739 2.89 0.02 7.33978 -292.565 -7.33978 7.33978 0.73 0.00581983 0.0045519 0.947999 0.61775 92 46890 40 1.74617e+07 1.64916e+07 2.37849e+06 5946.23 14.00 3.33843 2.48872 42225 16 13783 58193 2198678 343498 8.16378 8.16378 -329.46 -8.16378 0 0 3.01539e+06 7538.48 0.62 0.79 0.378636 0.332663 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1
- k6_frac_N10_40nm.xml des.pre-vpr.blif common 4.31 -1 -1 -1 -1 -1 -1 -1 -1 -1 51 256 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 45028 256 245 954 1199 0 581 552 18 18 324 io auto 0.25 4989 0.57 0.01 3.37847 -629.355 -3.37847 nan 0.55 0.00155578 0.00138396 0.170689 0.150943 44 8531 14 1.37969e+07 2.74859e+06 970398. 2995.06 1.46 0.52902 0.483013 7969 12 1965 4152 217807 49587 4.23063 nan -775 -4.23063 0 0 1.26150e+06 3893.53 0.24 0.10 0.059739 0.0563556 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1
- k6_frac_N10_40nm.xml diffeq.pre-vpr.blif common 2.67 -1 -1 -1 -1 -1 -1 -1 -1 -1 66 64 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 38364 64 39 1371 1410 1 542 169 11 11 121 clb auto 0.38 3413 0.32 0.00 4.67654 -912.396 -4.67654 4.67654 0.16 0.00100594 0.000816668 0.12706 0.0994781 46 6130 26 4.36541e+06 3.557e+06 343362. 2837.71 0.94 0.362434 0.297569 5260 13 1999 5620 169131 35211 5.53977 5.53977 -1090.5 -5.53977 0 0 440296. 3638.81 0.07 0.09 0.0650941 0.0594477 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1
- k6_frac_N10_40nm.xml dsip.pre-vpr.blif common 5.54 -1 -1 -1 -1 -1 -1 -1 -1 -1 71 229 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 45988 229 197 1362 1559 1 566 497 16 16 256 io auto 0.66 4793 0.66 0.01 2.51785 -604.704 -2.51785 2.51785 0.40 0.00154819 0.00135536 0.200854 0.168258 46 7938 19 1.05632e+07 3.82647e+06 786978. 3074.13 2.50 0.734243 0.641832 7482 10 1826 4727 234733 52733 3.19583 3.19583 -717 -3.19583 0 0 1.01084e+06 3948.58 0.17 0.11 0.0688767 0.0644421 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1
- k6_frac_N10_40nm.xml elliptic.pre-vpr.blif common 8.70 -1 -1 -1 -1 -1 -1 -1 -1 -1 166 131 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 63632 131 114 3421 3535 1 1164 411 15 15 225 clb auto 2.25 10398 1.12 0.01 6.52628 -3784.19 -6.52628 6.52628 0.35 0.00290542 0.00235057 0.415737 0.301601 62 16689 24 9.10809e+06 8.9464e+06 909814. 4043.62 2.83 1.17721 0.93764 15000 17 4999 21128 713315 123027 7.49463 7.49463 -4392.46 -7.49463 0 0 1.12687e+06 5008.33 0.19 0.39 0.260469 0.224137 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1
- k6_frac_N10_40nm.xml ex1010.pre-vpr.blif common 24.83 -1 -1 -1 -1 -1 -1 -1 -1 -1 288 10 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 91684 10 10 2659 2669 0 1393 308 19 19 361 clb auto 2.93 26140 1.67 0.01 5.75218 -55.7663 -5.75218 nan 0.66 0.00438337 0.00279442 0.533527 0.352352 92 44132 33 1.55754e+07 1.55215e+07 2.13123e+06 5903.67 15.76 2.52651 1.87954 39597 17 9715 60001 2696762 353002 6.60772 nan -63.286 -6.60772 0 0 2.70169e+06 7483.90 0.52 0.82 0.293592 0.258315 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1
- k6_frac_N10_40nm.xml ex5p.pre-vpr.blif common 2.85 -1 -1 -1 -1 -1 -1 -1 -1 -1 62 8 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 36372 8 63 761 824 0 435 133 10 10 100 clb auto 0.52 3998 0.30 0.00 3.54271 -155.067 -3.54271 nan 0.12 0.00150999 0.0011755 0.104424 0.0802546 62 6550 31 3.44922e+06 3.34143e+06 366588. 3665.88 1.10 0.323676 0.261994 6094 17 2709 12574 426888 79431 4.1719 nan -186.289 -4.1719 0 0 454102. 4541.02 0.07 0.12 0.0620518 0.0557626 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1
- k6_frac_N10_40nm.xml frisc.pre-vpr.blif common 9.02 -1 -1 -1 -1 -1 -1 -1 -1 -1 169 20 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 64416 20 116 3175 3291 1 1278 305 15 15 225 clb auto 1.77 13380 1.17 0.01 7.56455 -3941.67 -7.56455 7.56455 0.34 0.00277682 0.00226423 0.429569 0.312356 76 22460 36 9.10809e+06 9.10809e+06 1.08042e+06 4801.85 3.46 1.23017 0.972484 20283 19 6164 25645 1097708 182881 8.69548 8.69548 -4541.25 -8.69548 0 0 1.34805e+06 5991.31 0.22 0.41 0.232291 0.206855 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1
- k6_frac_N10_40nm.xml misex3.pre-vpr.blif common 3.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 72 14 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 38188 14 14 828 842 0 472 100 11 11 121 clb auto 0.66 4472 0.29 0.00 4.02064 -52.776 -4.02064 nan 0.16 0.00094524 0.000696414 0.110625 0.0852328 54 7869 46 4.36541e+06 3.88037e+06 393282. 3250.26 1.41 0.414709 0.333625 6576 16 2671 12354 410056 75432 4.89666 nan -62.2285 -4.89666 0 0 511363. 4226.14 0.08 0.13 0.0661113 0.0599437 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1
- k6_frac_N10_40nm.xml pdc.pre-vpr.blif common 18.83 -1 -1 -1 -1 -1 -1 -1 -1 -1 271 16 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 79064 16 40 2839 2879 0 1511 327 19 19 361 clb auto 2.29 23498 1.77 0.01 6.13416 -223.252 -6.13416 nan 0.64 0.00374336 0.00284388 0.574447 0.377083 84 39816 34 1.55754e+07 1.46053e+07 1.95904e+06 5426.71 10.58 2.48689 1.8409 35391 18 8962 48547 1930691 286226 7.01 nan -249.162 -7.01 0 0 2.48734e+06 6890.13 0.48 0.68 0.303059 0.267959 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1
- k6_frac_N10_40nm.xml s298.pre-vpr.blif common 2.51 -1 -1 -1 -1 -1 -1 -1 -1 -1 64 4 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 33628 4 6 726 732 1 380 74 10 10 100 clb auto 0.49 3569 0.24 0.00 5.54077 -44.6464 -5.54077 5.54077 0.12 0.000846487 0.000635962 0.100625 0.0782428 50 5478 26 3.44922e+06 3.44922e+06 295697. 2956.97 0.92 0.335583 0.275197 4975 16 2083 8762 272937 50612 6.18041 6.18041 -52.1211 -6.18041 0 0 379824. 3798.24 0.06 0.10 0.0597808 0.0544635 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1
- k6_frac_N10_40nm.xml s38417.pre-vpr.blif common 11.39 -1 -1 -1 -1 -1 -1 -1 -1 -1 250 29 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 79632 29 106 4782 4888 1 2018 385 18 18 324 clb auto 2.07 13078 1.69 0.01 4.46817 -3195.71 -4.46817 4.46817 0.56 0.00435607 0.00294557 0.640302 0.441684 52 21680 48 1.37969e+07 1.34735e+07 1.12378e+06 3468.47 4.24 1.86267 1.43077 19009 14 6279 16868 582183 118551 5.45344 5.45344 -3646.72 -5.45344 0 0 1.48031e+06 4568.86 0.27 0.36 0.266878 0.24087 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1
- k6_frac_N10_40nm.xml s38584.1.pre-vpr.blif common 10.86 -1 -1 -1 -1 -1 -1 -1 -1 -1 227 38 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 80312 38 304 4422 4726 1 2038 569 18 18 324 clb auto 1.82 13449 1.89 0.02 4.16995 -2665.67 -4.16995 4.16995 0.55 0.00470624 0.00318059 0.6478 0.452736 58 23840 35 1.37969e+07 1.22339e+07 1.26150e+06 3893.53 3.80 1.89616 1.47869 20578 14 6433 17363 638387 131973 5.22573 5.22573 -3068.94 -5.22573 0 0 1.60510e+06 4954.00 0.31 0.36 0.265548 0.241509 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1
- k6_frac_N10_40nm.xml seq.pre-vpr.blif common 4.45 -1 -1 -1 -1 -1 -1 -1 -1 -1 85 41 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 41348 41 35 1006 1041 0 599 161 12 12 144 clb auto 0.83 6384 0.44 0.00 4.12452 -119.318 -4.12452 nan 0.20 0.0011811 0.00087419 0.142915 0.109239 66 11228 27 5.3894e+06 4.58099e+06 593979. 4124.86 1.84 0.481825 0.384086 10130 18 4219 21318 758361 129163 4.91293 nan -139.398 -4.91293 0 0 735425. 5107.12 0.11 0.21 0.087897 0.0781507 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1
- k6_frac_N10_40nm.xml spla.pre-vpr.blif common 12.28 -1 -1 -1 -1 -1 -1 -1 -1 -1 213 16 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 65920 16 46 2232 2278 0 1178 275 17 17 289 clb auto 1.79 15813 1.23 0.01 5.56061 -183.389 -5.56061 nan 0.48 0.00353067 0.00224815 0.419453 0.279048 72 27375 40 1.21262e+07 1.14794e+07 1.37091e+06 4743.65 6.17 1.43321 1.07751 24226 19 6729 36115 1420951 217710 6.47301 nan -214.84 -6.47301 0 0 1.71058e+06 5918.98 0.30 0.50 0.231287 0.204796 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1
- k6_frac_N10_40nm.xml tseng.pre-vpr.blif common 2.50 -1 -1 -1 -1 -1 -1 -1 -1 -1 63 52 -1 -1 success v8.0.0-3151-g91780fa55 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-11-24T20:22:40 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/gold/vtr-verilog-to-routing 38420 52 122 1461 1583 1 476 237 10 10 100 clb auto 0.41 2412 0.32 0.00 4.20921 -1050.39 -4.20921 4.20921 0.12 0.0010223 0.000849699 0.120894 0.0960136 48 4749 25 3.44922e+06 3.39532e+06 287248. 2872.48 0.82 0.408789 0.338724 4022 12 1351 3243 108746 26426 4.95741 4.95741 -1201.15 -4.95741 0 0 366588. 3665.88 0.06 0.08 0.0620446 0.0568583 simple RL 'Softmax agent' -1 -1 -1 -1 -1 -1 -1 -1
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_reg_coffe/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_reg_coffe/config/config.txt
deleted file mode 100644
index 62aac9e4992..00000000000
--- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_reg_coffe/config/config.txt
+++ /dev/null
@@ -1,30 +0,0 @@
-#
-############################################
-# Configuration file for running experiments
-##############################################
-
-# Path to directory of circuits to use
-circuits_dir=benchmarks/verilog
-
-# Path to directory of architectures to use
-archs_dir=arch/COFFE_22nm
-
-# Add circuits to list to sweep
-circuit_list_add=spree.v
-circuit_list_add=or1200.v
-circuit_list_add=matmul_8x8_fp16.v
-
-# Add architectures to list to sweep
-arch_list_add=agilex_arch.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=-track_memory_usage -crit_path_router_iterations 100
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_reg_coffe/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_reg_coffe/config/golden_results.txt
deleted file mode 100644
index 3ffd76acd50..00000000000
--- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_reg_coffe/config/golden_results.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-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
-agilex_arch.xml spree.v common 369.46 0.12 21324 15 0.60 -1 -1 39744 -1 -1 52 45 6 -1 success v8.0.0-rc2-3464-g9db6ef823 Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-5.4.0-67-generic x86_64 2021-03-18T06:37:49 casa51 /home/casauser/Desktop/Most-Updated-VTR/sdamghan/vtr_flow/tasks 2948032 45 32 1272 1229 1 802 136 178 82 14596 -1 mylayout 1.60 8503 0.59 0.00 7.83793 -5746.83 -7.83793 7.83793 196.24 0.0016149 0.00134296 0.289916 0.236667 72 19754 31 6.8487e+08 2.93092e+06 9.91456e+07 6792.65 95.70 0.753445 0.642307 16378 15 4235 12005 2791151 620927 9.33697 9.33697 -7066.84 -9.33697 0 0 1.22277e+08 8377.42 23.24 0.52 0.0990945 0.0915082
-agilex_arch.xml or1200.v common 478.64 0.31 40272 8 3.52 -1 -1 45632 -1 -1 199 385 4 -1 success v8.0.0-rc2-3464-g9db6ef823 Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-5.4.0-67-generic x86_64 2021-03-18T06:37:49 casa51 /home/casauser/Desktop/Most-Updated-VTR/sdamghan/vtr_flow/tasks 2982648 385 394 4867 4602 1 2536 986 178 82 14596 -1 mylayout 5.30 60469 3.72 0.04 9.23583 -11851.8 -9.23583 9.23583 196.03 0.00620323 0.00555837 1.02093 0.888604 98 88585 28 6.8487e+08 7.3856e+06 1.26366e+08 8657.55 179.49 3.12592 2.80556 82552 18 13799 46793 6323987 1182870 10.4046 10.4046 -13466.1 -10.4046 0 0 1.58420e+08 10853.6 31.68 1.25 0.390119 0.366456
-agilex_arch.xml matmul_8x8_fp16.v common 531.50 1.02 75288 4 3.02 -1 -1 55820 -1 -1 252 134 24 -1 success v8.0.0-rc2-3464-g9db6ef823 Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-5.4.0-67-generic x86_64 2021-03-18T06:37:49 casa51 /home/casauser/Desktop/Most-Updated-VTR/sdamghan/vtr_flow/tasks 3001344 134 97 8327 7357 2 3655 523 178 82 14596 -1 mylayout 8.12 39763 3.38 0.02 6.45572 -32299.2 -6.45572 1.92725 196.90 0.00952948 0.00772521 1.77527 1.42404 88 78700 44 6.8487e+08 1.59968e+07 1.15784e+08 7932.56 227.28 5.62023 4.74 64240 19 13490 24272 15930552 3414580 6.89785 2.29033 -36973.3 -6.89785 0 0 1.43607e+08 9838.80 28.11 2.30 0.559657 0.508002
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_reg_qor_chain/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_reg_qor_chain/config/golden_results.txt
deleted file mode 100644
index e7106ff5a8f..00000000000
--- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_reg_qor_chain/config/golden_results.txt
+++ /dev/null
@@ -1,22 +0,0 @@
-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
-k6_frac_N10_frac_chain_mem32K_40nm.xml arm_core.v common 155.64 1.08 127548 18 37.53 -1 -1 70392 -1 -1 1008 133 24 0 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-27T00:36:48 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 287044 133 179 18339 18121 1 9040 1344 39 39 1521 clb auto 17.76 138925 10.78 0.08 17.3291 -132913 -17.3291 17.3291 2.83 0.0233226 0.0202863 3.21433 2.74386 106 195650 27 8.65315e+07 6.74784e+07 1.02794e+07 6758.33 50.36 10.6206 9.26324 182348 15 34912 125847 27216363 6482638 19.2483 19.2483 -152788 -19.2483 0 0 1.30215e+07 8561.12 2.39 4.83 1.43156 1.32714
-k6_frac_N10_frac_chain_mem32K_40nm.xml bgm.v common 392.24 5.03 389328 15 146.30 -1 -1 149032 -1 -1 2712 257 0 11 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-27T00:36:48 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 671208 257 32 35908 33296 1 19534 3012 63 63 3969 clb auto 45.14 255913 37.21 0.26 18.1917 -23818.8 -18.1917 18.1917 22.11 0.0516147 0.0463894 6.8373 5.96124 80 392154 29 2.36641e+08 1.50518e+08 2.15027e+07 5417.67 91.80 24.5863 21.5781 366453 20 88192 390830 20471535 3157944 20.5117 20.5117 -26441.9 -20.5117 0 0 2.71248e+07 6834.16 5.61 6.28 3.64364 3.35439
-k6_frac_N10_frac_chain_mem32K_40nm.xml blob_merge.v common 69.01 0.34 55708 5 26.56 -1 -1 69148 -1 -1 619 36 0 0 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-27T00:36:48 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 162360 36 100 14037 11284 1 3230 755 31 31 961 clb auto 11.53 45897 4.68 0.03 13.3428 -2596.7 -13.3428 13.3428 1.69 0.0114217 0.0101128 1.68256 1.46806 60 76713 48 5.14688e+07 3.33604e+07 3.85800e+06 4014.56 15.24 4.14488 3.63926 66475 13 12384 59651 2545727 332961 15.3759 15.3759 -2979.2 -15.3759 0 0 4.86014e+06 5057.38 0.81 0.91 0.644163 0.596931
-k6_frac_N10_frac_chain_mem32K_40nm.xml boundtop.v common 4.36 0.35 45384 3 0.31 -1 -1 41132 -1 -1 93 142 0 0 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-27T00:36:48 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 39868 142 192 1069 1139 1 566 427 14 14 196 clb auto 0.53 1719 0.51 0.00 2.89823 -451.929 -2.89823 2.89823 0.28 0.00105332 0.000965843 0.18909 0.173081 38 3929 16 9.20055e+06 5.01214e+06 467348. 2384.43 0.76 0.448178 0.414908 3370 10 1156 1738 87127 23536 3.536 3.536 -547.719 -3.536 0 0 593372. 3027.41 0.10 0.05 0.042892 0.041158
-k6_frac_N10_frac_chain_mem32K_40nm.xml ch_intrinsics.v common 1.79 0.03 9840 3 0.18 -1 -1 38064 -1 -1 65 99 1 0 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-27T00:36:48 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 33120 99 130 363 493 1 251 295 12 12 144 clb auto 0.11 617 0.20 0.00 2.00545 -202.179 -2.00545 2.00545 0.17 0.000347656 0.000314547 0.0609896 0.0555735 46 1412 9 5.66058e+06 4.05111e+06 378966. 2631.71 0.42 0.142214 0.131386 1261 9 529 668 43396 14976 2.66687 2.66687 -234.696 -2.66687 0 0 486261. 3376.82 0.08 0.02 0.0133609 0.0128123
-k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq1.v common 5.45 0.02 9352 6 0.13 -1 -1 38140 -1 -1 32 162 0 5 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-27T00:36:48 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 42768 162 96 1075 884 1 667 295 16 16 256 mult_36 auto 0.27 4733 0.47 0.01 15.5592 -1185.14 -15.5592 15.5592 0.35 0.00164413 0.00155059 0.229015 0.216092 62 10311 45 1.21132e+07 3.70461e+06 968026. 3781.35 2.81 0.720597 0.684741 8377 19 3224 5336 1782353 475161 17.1072 17.1072 -1423.44 -17.1072 0 0 1.20332e+06 4700.46 0.19 0.27 0.0868714 0.0833451
-k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq2.v common 5.92 0.02 8604 6 0.08 -1 -1 38144 -1 -1 20 66 0 7 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-27T00:36:48 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 45512 66 96 866 607 1 547 189 18 18 324 mult_36 auto 0.29 4560 0.40 0.00 12.009 -735.792 -12.009 12.009 0.48 0.00164024 0.00157172 0.228917 0.219193 54 9621 47 1.57076e+07 3.84988e+06 1.09175e+06 3369.60 3.00 0.714008 0.68718 9058 18 3553 7591 3282454 770442 13.2466 13.2466 -862.815 -13.2466 0 0 1.41842e+06 4377.85 0.23 0.40 0.0773847 0.0749938
-k6_frac_N10_frac_chain_mem32K_40nm.xml LU8PEEng.v common 396.33 3.33 219016 100 52.94 -1 -1 107904 -1 -1 2180 114 44 8 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-27T00:36:48 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 586796 114 102 38208 33849 1 17938 2448 57 57 3249 clb auto 56.50 239395 32.12 0.23 66.5755 -50925.9 -66.5755 66.5755 17.50 0.0493685 0.0438785 7.43052 6.42444 92 361512 48 1.92089e+08 1.44771e+08 1.98119e+07 6097.84 192.54 24.6545 21.4476 328109 23 72468 273398 39855950 8187728 75.3499 75.3499 -63032 -75.3499 0 0 2.51903e+07 7753.25 4.79 8.67 3.78544 3.42841
-k6_frac_N10_frac_chain_mem32K_40nm.xml LU32PEEng.v common 3340.25 27.94 746972 102 477.56 -1 -1 373092 -1 -1 7495 114 167 32 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-27T00:36:48 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 2011368 114 102 124755 111050 1 59278 7910 102 102 10404 clb auto 177.54 1072406 247.04 1.51 67.6126 -342686 -67.6126 67.6126 64.41 0.201271 0.179091 29.5944 25.4921 128 1405319 39 6.36957e+08 5.08087e+08 8.68880e+07 8351.40 2161.55 100.542 87.0181 1350075 21 217881 912992 253789873 63051185 76.337 76.337 -476260 -76.337 0 0 1.09718e+08 10545.7 23.53 58.41 13.6383 12.2683
-k6_frac_N10_frac_chain_mem32K_40nm.xml mcml.v common 3241.51 28.65 928600 25 1897.53 -1 -1 376944 -1 -1 7078 36 159 27 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-27T00:36:48 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 2451584 36 33 190540 166259 1 61618 7333 99 99 9801 clb auto 176.91 718258 337.06 1.70 42.0812 -275832 -42.0812 42.0812 61.42 0.196016 0.174291 37.2747 32.1758 138 951582 21 6.00857e+08 4.79252e+08 8.73468e+07 8912.03 579.89 138.184 119.724 917221 22 225274 574203 91930691 20227411 45.1932 45.1932 -346416 -45.1932 0 0 1.11488e+08 11375.2 26.23 27.39 13.951 12.6666
-k6_frac_N10_frac_chain_mem32K_40nm.xml mkDelayWorker32B.v common 45.93 0.60 78588 5 4.11 -1 -1 57064 -1 -1 456 506 45 0 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-27T00:36:48 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 318160 506 553 3519 4017 1 3099 1560 50 50 2500 memory auto 3.54 15041 3.96 0.03 6.68635 -1894.57 -6.68635 6.68635 13.09 0.00975899 0.00892439 2.06731 1.87235 38 23149 16 1.47946e+08 4.92362e+07 6.86579e+06 2746.32 10.05 4.61064 4.25515 22207 14 4233 5386 3331744 828056 7.52959 7.52959 -2298.71 -7.52959 0 0 8.69102e+06 3476.41 1.79 0.78 0.451892 0.430249
-k6_frac_N10_frac_chain_mem32K_40nm.xml mkPktMerge.v common 9.00 0.08 17600 2 0.07 -1 -1 37736 -1 -1 29 311 15 0 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-27T00:36:48 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 66704 311 156 1019 1160 1 965 511 28 28 784 memory auto 0.42 8138 0.71 0.01 3.74116 -4094.6 -3.74116 3.74116 1.28 0.00224079 0.00197484 0.335269 0.293725 36 14917 17 4.25198e+07 9.78293e+06 1.94918e+06 2486.20 3.53 0.905895 0.81445 13627 14 3139 3534 2595237 727498 4.23116 4.23116 -4785.8 -4.23116 0 0 2.40571e+06 3068.51 0.45 0.39 0.0997164 0.093212
-k6_frac_N10_frac_chain_mem32K_40nm.xml mkSMAdapter4B.v common 18.13 0.19 32272 4 1.40 -1 -1 41576 -1 -1 193 193 5 0 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-27T00:36:48 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 64092 193 205 2926 2852 1 1458 596 20 20 400 memory auto 2.23 11363 1.73 0.01 4.87719 -2477.32 -4.87719 4.87719 0.60 0.00309363 0.00270934 0.585 0.514648 56 21377 42 2.07112e+07 1.31415e+07 1.41661e+06 3541.53 9.25 1.56124 1.39721 17625 14 4928 12826 996652 229620 5.25923 5.25923 -2945.62 -5.25923 0 0 1.80858e+06 4521.44 0.29 0.27 0.176266 0.166291
-k6_frac_N10_frac_chain_mem32K_40nm.xml or1200.v common 29.00 0.30 40356 8 3.32 -1 -1 47836 -1 -1 253 385 2 1 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-27T00:36:48 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 99660 385 394 4649 4513 1 2409 1035 27 27 729 io auto 5.71 30379 3.63 0.03 8.13796 -9652.08 -8.13796 8.13796 1.25 0.00614395 0.00563481 0.974168 0.888803 92 44752 19 3.93038e+07 1.51272e+07 4.24291e+06 5820.18 9.15 2.96353 2.72595 42651 19 10128 36430 3172325 595664 8.6066 8.6066 -10895.4 -8.6066 0 0 5.38988e+06 7393.52 0.91 0.77 0.411059 0.38823
-k6_frac_N10_frac_chain_mem32K_40nm.xml raygentop.v common 12.97 0.22 32140 3 0.76 -1 -1 44472 -1 -1 111 214 0 8 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-27T00:36:48 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 61808 214 305 2963 2869 1 1440 638 19 19 361 io auto 1.82 11058 1.18 0.01 4.28804 -2547.99 -4.28804 4.28804 0.54 0.00327809 0.00301378 0.452357 0.415064 58 23745 38 1.72706e+07 9.15023e+06 1.32779e+06 3678.09 5.46 1.45919 1.35263 19546 16 5825 13540 3597927 808321 4.87643 4.87643 -2976.1 -4.87643 0 0 1.69263e+06 4688.74 0.28 0.55 0.185896 0.177314
-k6_frac_N10_frac_chain_mem32K_40nm.xml sha.v common 176.54 0.65 38316 3 165.99 -1 -1 95588 -1 -1 156 38 0 0 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-27T00:36:48 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 59996 38 36 2995 2744 1 1210 230 17 17 289 clb auto 1.54 11099 0.96 0.01 8.60024 -2289.89 -8.60024 8.60024 0.42 0.00268266 0.00238109 0.37326 0.327349 66 16854 22 1.34605e+07 8.40746e+06 1.18400e+06 4096.89 2.62 1.13068 1.00608 15692 22 4746 12707 469422 81010 9.99242 9.99242 -2671.82 -9.99242 0 0 1.47169e+06 5092.36 0.24 0.26 0.207061 0.192508
-k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common 7.39 0.10 21400 15 0.54 -1 -1 39460 -1 -1 65 45 3 1 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-27T00:36:48 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 45340 45 32 1275 1232 1 827 146 14 14 196 memory auto 1.82 6673 0.48 0.00 10.0822 -6325.59 -10.0822 10.0822 0.27 0.00151357 0.00131468 0.220965 0.191261 72 12424 18 9.20055e+06 5.54311e+06 844708. 4309.73 2.54 0.620034 0.549701 10987 13 3155 8576 1581981 414115 11.6443 11.6443 -7336.6 -11.6443 0 0 1.05868e+06 5401.43 0.16 0.26 0.0910415 0.0858264
-k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision0.v common 40.23 1.10 119024 5 4.44 -1 -1 74600 -1 -1 704 157 0 0 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-27T00:36:48 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 238268 157 197 23846 21799 1 6676 1058 33 33 1089 clb auto 6.07 39618 5.22 0.04 2.9308 -13224.6 -2.9308 2.9308 1.92 0.0170934 0.0148804 2.3955 2.05486 50 62630 23 6.0475e+07 3.79415e+07 3.66263e+06 3363.29 9.95 6.51043 5.70708 55668 12 16379 25575 918337 183454 3.69492 3.69492 -15705.8 -3.69492 0 0 4.71657e+06 4331.10 0.80 0.89 0.945921 0.886384
-k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision1.v common 89.73 1.03 105076 3 20.89 -1 -1 89012 -1 -1 675 115 0 40 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-27T00:36:48 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 260800 115 145 23133 19546 1 9716 975 40 40 1600 mult_36 auto 6.43 81193 6.66 0.05 4.85074 -22294.2 -4.85074 4.85074 2.98 0.0187538 0.0163566 2.84536 2.49603 82 134682 37 9.16046e+07 5.22191e+07 8.58295e+06 5364.35 34.42 9.16026 8.14536 119058 16 33969 51744 22437603 4613086 5.29409 5.29409 -25657.1 -5.29409 0 0 1.07702e+07 6731.38 1.86 3.39 1.10756 1.0344
-k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision2.v common 470.22 1.29 149236 3 4.46 -1 -1 206296 -1 -1 1653 149 0 324 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-27T00:36:48 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 1491184 149 182 65737 42630 1 35961 2308 104 104 10816 mult_36 auto 21.23 329951 31.98 0.21 14.5498 -61941.6 -14.5498 14.5498 68.09 0.0725127 0.0673415 11.4647 10.4712 90 443033 19 6.67561e+08 2.17385e+08 6.61421e+07 6115.21 265.32 45.5343 41.9549 430675 21 111059 129339 29959568 5987707 15.9808 15.9808 -72553.5 -15.9808 0 0 8.27409e+07 7649.86 18.60 7.66 4.48403 4.21097
-k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 1.20 0.03 10080 5 0.09 -1 -1 37680 -1 -1 14 11 0 0 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-27T00:36:48 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 28936 11 30 313 321 2 118 55 7 7 49 clb auto 0.19 380 0.06 0.00 2.27568 -154.498 -2.27568 2.04477 0.04 0.000275918 0.000231588 0.0376074 0.0323751 30 1183 37 1.07788e+06 754516 77114.5 1573.76 0.20 0.0977514 0.0855348 771 16 577 1036 37069 12535 2.63781 2.28939 -181.689 -2.63781 0 0 95414.1 1947.23 0.01 0.02 0.0185412 0.0172295
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_reg_qor_chain_depop/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_reg_qor_chain_depop/config/golden_results.txt
deleted file mode 100644
index 9603a62bbba..00000000000
--- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_reg_qor_chain_depop/config/golden_results.txt
+++ /dev/null
@@ -1,22 +0,0 @@
-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
-k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml arm_core.v common 187.25 1.04 127444 18 36.75 -1 -1 70508 -1 -1 844 133 24 0 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-26T10:28:49 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 305136 133 179 18339 18121 1 8939 1180 36 36 1296 clb memory auto 9.43 133843 10.97 0.08 18.4184 -141279 -18.4184 18.4184 2.50 0.0229132 0.0199845 3.31095 2.83212 146 224959 37 7.21828e+07 5.86395e+07 1.23606e+07 9537.51 89.99 14.4936 12.6468 207535 16 38497 147575 36095601 8273636 20.0278 20.0278 -158267 -20.0278 0 0 1.55729e+07 12016.1 2.68 5.94 1.47278 1.36488
-k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml bgm.v common 411.87 4.89 389256 15 145.12 -1 -1 148924 -1 -1 2307 257 0 11 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-26T10:28:49 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 684476 257 32 35908 33296 1 18838 2607 58 58 3364 clb auto 27.78 235429 34.46 0.25 17.4391 -23409.1 -17.4391 17.4391 23.79 0.0516571 0.0464058 6.72323 5.86433 112 479499 41 2.00088e+08 1.28693e+08 2.63593e+07 7835.69 126.73 26.7317 23.4004 442114 21 99544 467606 43136625 7767692 20.4189 20.4189 -26309.7 -20.4189 0 0 3.33056e+07 9900.58 6.95 9.19 3.76089 3.45424
-k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml blob_merge.v common 74.42 0.32 55600 5 26.37 -1 -1 69372 -1 -1 539 36 0 0 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-26T10:28:49 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 168468 36 100 14037 11284 1 3701 675 29 29 841 clb auto 7.67 46059 4.90 0.03 12.6594 -2401.1 -12.6594 12.6594 1.50 0.0113697 0.0101221 1.77879 1.55494 98 94409 37 4.4999e+07 2.90489e+07 5.54665e+06 6595.30 23.80 6.42558 5.64015 84384 20 15443 69619 5194421 916834 14.3714 14.3714 -2913.99 -14.3714 0 0 6.99642e+06 8319.17 1.17 1.38 0.809104 0.740731
-k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml boundtop.v common 4.22 0.34 45380 3 0.29 -1 -1 41572 -1 -1 90 142 0 0 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-26T10:28:49 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 40724 142 192 1069 1139 1 529 424 14 14 196 clb auto 0.33 1652 0.47 0.00 2.91405 -454.748 -2.91405 2.91405 0.29 0.00101596 0.000930337 0.178086 0.163008 50 3783 18 9.20055e+06 4.85046e+06 641979. 3275.40 0.85 0.437009 0.40476 3531 11 1197 2084 128194 36276 3.65266 3.65266 -552.825 -3.65266 0 0 827179. 4220.30 0.13 0.06 0.0454842 0.0436016
-k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml ch_intrinsics.v common 1.80 0.03 9760 3 0.18 -1 -1 38088 -1 -1 64 99 1 0 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-26T10:28:49 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 32720 99 130 363 493 1 261 294 12 12 144 clb auto 0.08 697 0.20 0.00 2.11495 -207.011 -2.11495 2.11495 0.19 0.000348369 0.00031603 0.0615553 0.056146 42 1903 12 5.66058e+06 3.99722e+06 373597. 2594.42 0.44 0.145309 0.134279 1800 12 675 938 87522 29405 2.95628 2.95628 -261.888 -2.95628 0 0 468675. 3254.69 0.08 0.03 0.0150321 0.0143185
-k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml diffeq1.v common 6.08 0.02 9420 6 0.13 -1 -1 38280 -1 -1 26 162 0 5 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-26T10:28:49 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 44148 162 96 1075 884 1 667 289 16 16 256 mult_36 auto 0.26 5078 0.45 0.01 15.3726 -1203.18 -15.3726 15.3726 0.37 0.00159172 0.00150165 0.217858 0.20566 60 11156 33 1.21132e+07 3.38124e+06 1.01260e+06 3955.47 3.41 0.669616 0.636427 9613 24 3616 6215 1828440 447202 17.5186 17.5186 -1462.9 -17.5186 0 0 1.26536e+06 4942.82 0.20 0.28 0.101724 0.0975686
-k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml diffeq2.v common 7.38 0.02 8508 6 0.08 -1 -1 38240 -1 -1 16 66 0 7 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-26T10:28:49 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 44272 66 96 866 607 1 533 185 18 18 324 mult_36 auto 0.18 4735 0.39 0.00 12.0481 -714.751 -12.0481 12.0481 0.51 0.00156185 0.00149181 0.225278 0.215582 52 11667 29 1.57076e+07 3.6343e+06 1.14165e+06 3523.62 4.31 0.652578 0.627735 10315 22 4558 9816 5259633 1258198 13.5233 13.5233 -870.647 -13.5233 0 0 1.50318e+06 4639.44 0.25 0.64 0.0893253 0.0865332
-k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml LU8PEEng.v common 356.39 3.25 219112 100 52.78 -1 -1 108040 -1 -1 1841 114 44 8 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-26T10:28:49 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 607268 114 102 38208 33849 1 17353 2109 52 52 2704 clb auto 40.91 231454 30.60 0.22 66.2277 -52518.7 -66.2277 66.2277 18.20 0.0525876 0.0443016 7.42057 6.35547 126 414532 46 1.58905e+08 1.26502e+08 2.31921e+07 8576.97 166.12 26.4719 22.9515 382076 24 80752 321509 53511812 11238071 73.8205 73.8205 -66754.4 -73.8205 -18.6509 -0.298787 2.92176e+07 10805.3 5.94 10.83 3.89497 3.51774
-k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml LU32PEEng.v common 3688.47 27.99 746852 102 475.93 -1 -1 373264 -1 -1 6283 114 167 32 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-26T10:28:49 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 2073192 114 102 124755 111050 1 58496 6698 94 94 8836 clb auto 120.74 1038840 228.08 1.44 63.968 -327364 -63.968 63.968 69.33 0.200467 0.178616 28.6759 24.9879 166 1627499 49 5.40921e+08 4.42773e+08 9.94454e+07 11254.6 2577.31 117.347 101.565 1527530 23 242192 1034564 250008716 57569237 76.0612 76.0612 -480995 -76.0612 -53.7561 -0.292146 1.26268e+08 14290.2 29.87 55.24 14.4939 13.0224
-k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml mcml.v common 3379.36 27.64 928572 25 1899.47 -1 -1 377356 -1 -1 6728 36 159 27 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-26T10:28:49 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 2273420 36 33 190540 166259 1 60177 6983 97 97 9409 clb auto 143.40 724582 365.42 1.81 39.3272 -247845 -39.3272 39.3272 73.89 0.198517 0.176588 39.423 34.166 150 1097566 40 5.71422e+08 4.60391e+08 9.66696e+07 10274.2 698.69 117.68 102.115 1026180 21 255543 695596 135326112 29284113 42.7203 42.7203 -313582 -42.7203 -0.103902 -0.0259755 1.22193e+08 12986.9 28.82 33.14 13.6095 12.3398
-k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml mkDelayWorker32B.v common 52.01 0.58 78644 5 4.10 -1 -1 56812 -1 -1 453 506 45 0 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-26T10:28:49 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 379156 506 553 3519 4017 1 3086 1557 50 50 2500 memory auto 3.21 15906 3.98 0.03 6.63464 -1807.67 -6.63464 6.63464 17.03 0.00947631 0.0086483 2.02448 1.83037 40 24763 18 1.47946e+08 4.90746e+07 7.85310e+06 3141.24 11.63 4.53457 4.1715 23665 16 4699 6227 4255095 1086941 7.29496 7.29496 -2223.41 -7.29496 -5.03631 -0.193229 9.77405e+06 3909.62 2.09 0.90 0.453391 0.428763
-k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml mkPktMerge.v common 9.91 0.07 17508 2 0.05 -1 -1 38116 -1 -1 25 311 15 0 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-26T10:28:49 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 69352 311 156 1019 1160 1 954 507 28 28 784 memory auto 0.36 7932 0.70 0.01 3.65703 -4338.92 -3.65703 3.65703 1.39 0.00224839 0.00198333 0.328793 0.287966 40 14723 37 4.25198e+07 9.56735e+06 2.32339e+06 2963.51 4.20 0.979749 0.879163 13500 17 3399 3683 2547833 716874 4.00095 4.00095 -5037.99 -4.00095 -15.6433 -0.322548 2.89875e+06 3697.39 0.54 0.39 0.113703 0.106063
-k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml mkSMAdapter4B.v common 15.61 0.17 32120 4 1.37 -1 -1 41652 -1 -1 167 193 5 0 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-26T10:28:49 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 68864 193 205 2926 2852 1 1371 570 20 20 400 memory auto 1.11 10697 1.67 0.01 4.1938 -2470.95 -4.1938 4.1938 0.64 0.00301318 0.0026482 0.573855 0.504906 78 21098 24 2.07112e+07 1.17403e+07 2.06176e+06 5154.39 7.68 1.7345 1.55585 18857 15 4972 14066 1481027 326048 4.86803 4.86803 -2859.5 -4.86803 -7.79205 -0.298787 2.60035e+06 6500.87 0.40 0.33 0.185004 0.174222
-k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml or1200.v common 49.36 0.29 40224 8 3.32 -1 -1 47528 -1 -1 202 385 2 1 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-26T10:28:49 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 108164 385 394 4649 4513 1 2346 984 27 27 729 io auto 2.99 30099 3.35 0.03 8.26188 -9666.23 -8.26188 8.26188 1.31 0.00619508 0.00563721 0.934643 0.853705 110 56434 38 3.93038e+07 1.23786e+07 5.33614e+06 7319.81 31.89 3.92552 3.60655 49850 19 11513 40653 5326074 1123118 8.66997 8.66997 -10836.2 -8.66997 0 0 6.77266e+06 9290.34 1.04 1.01 0.407545 0.384812
-k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml raygentop.v common 12.10 0.21 32160 3 0.74 -1 -1 44396 -1 -1 100 214 0 8 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-26T10:28:49 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 67700 214 305 2963 2869 1 1462 627 19 19 361 io auto 1.04 10916 1.12 0.02 4.47257 -2470.71 -4.47257 4.47257 0.58 0.00325314 0.00297249 0.427366 0.392074 68 25698 40 1.72706e+07 8.5574e+06 1.69273e+06 4689.01 5.37 1.42935 1.32583 21459 19 6285 15322 3278969 748877 4.76857 4.76857 -2933.03 -4.76857 0 0 2.08404e+06 5772.96 0.34 0.52 0.202764 0.192626
-k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml sha.v common 174.38 0.63 38292 3 163.00 -1 -1 95180 -1 -1 138 38 0 0 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-26T10:28:49 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 59976 38 36 2995 2744 1 1208 212 16 16 256 clb auto 1.19 11256 1.03 0.01 8.87371 -2382.95 -8.87371 8.87371 0.37 0.00262154 0.00231849 0.379138 0.332311 80 21797 26 1.21132e+07 7.43737e+06 1.29183e+06 5046.22 3.86 1.28485 1.14366 19351 22 5540 18113 1095161 241229 10.3694 10.3694 -2917.57 -10.3694 0 0 1.62458e+06 6346.00 0.24 0.33 0.209243 0.194591
-k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml spree.v common 8.36 0.10 21344 15 0.54 -1 -1 39348 -1 -1 49 45 3 1 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-26T10:28:49 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 49056 45 32 1275 1232 1 822 130 14 14 196 memory auto 0.65 6630 0.49 0.00 9.55177 -6480.8 -9.55177 9.55177 0.29 0.00146805 0.00127764 0.231034 0.200329 100 14267 33 9.20055e+06 4.68081e+06 1.19340e+06 6088.79 4.56 0.820973 0.727793 12397 14 3745 10984 1853298 463403 10.4092 10.4092 -7370.27 -10.4092 -17.8589 -0.318417 1.49920e+06 7648.97 0.21 0.28 0.0940894 0.0885721
-k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml stereovision0.v common 41.53 1.06 118912 5 4.36 -1 -1 74660 -1 -1 684 157 0 0 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-26T10:28:49 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 244556 157 197 23846 21799 1 6801 1038 33 33 1089 clb auto 4.63 40314 5.46 0.04 2.95855 -13303.1 -2.95855 2.95855 2.04 0.0164469 0.0143127 2.47104 2.11624 64 68056 41 6.0475e+07 3.68636e+07 5.14656e+06 4725.95 11.77 7.62774 6.68359 64167 14 19652 32945 2075106 479443 3.72591 3.72591 -16028.1 -3.72591 0 0 6.36035e+06 5840.54 1.15 1.09 1.00087 0.933792
-k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml stereovision1.v common 133.86 0.97 105084 3 20.99 -1 -1 89004 -1 -1 642 115 0 40 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-26T10:28:49 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 285336 115 145 23133 19546 1 9748 942 40 40 1600 mult_36 auto 4.38 76270 6.86 0.06 4.99955 -21585.1 -4.99955 4.99955 3.25 0.0187086 0.0162909 2.9171 2.55796 88 140299 45 9.16046e+07 5.04406e+07 9.92704e+06 6204.40 78.64 11.9198 10.5858 123303 21 39408 63999 27118412 5502186 5.37438 5.37438 -25122.8 -5.37438 0 0 1.23763e+07 7735.20 2.27 4.08 1.28064 1.18571
-k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml stereovision2.v common 487.35 1.23 149116 3 4.33 -1 -1 206360 -1 -1 1647 149 0 324 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-26T10:28:49 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 1769720 149 182 65737 42630 1 35973 2302 104 104 10816 mult_36 auto 20.76 330013 33.83 0.22 14.5277 -60838.7 -14.5277 14.5277 84.99 0.0740934 0.0689308 11.8726 10.8735 80 478178 22 6.67561e+08 2.17062e+08 6.43241e+07 5947.13 261.35 45.1675 41.6041 446994 18 117664 142709 36786595 7674733 16.6813 16.6813 -72795.8 -16.6813 0 0 8.07606e+07 7466.78 18.94 8.01 4.06519 3.82761
-k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml stereovision3.v common 1.05 0.03 10192 5 0.09 -1 -1 37336 -1 -1 15 11 0 0 success v8.0.0-rc2-3485-gbdf51aa9b Release VTR_ASSERT_LEVEL=2 GNU 9.3.0 on Linux-5.8.0-44-generic x86_64 2021-03-26T10:28:49 CASA44 /home/casauser/Desktop/Most-Updated-VTRs/sdamghan/vtr_flow/tasks 29604 11 30 313 321 2 108 56 7 7 49 clb auto 0.12 395 0.06 0.00 2.36605 -152.494 -2.36605 1.9999 0.04 0.000299962 0.000258146 0.037683 0.0321939 30 1169 31 1.07788e+06 808410 84241.2 1719.21 0.17 0.0900147 0.0784088 944 17 532 1516 56407 21898 3.07845 2.37233 -183.444 -3.07845 0 0 103128. 2104.65 0.01 0.03 0.0181695 0.0168082
diff --git a/vtr_flow/tasks/arithmetic_tasks/FIR_filters/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/FIR_filters/config/config.txt
similarity index 94%
rename from vtr_flow/tasks/arithmetic_tasks/FIR_filters/config/config.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/FIR_filters/config/config.txt
index f36c8c43392..8f57d738514 100644
--- a/vtr_flow/tasks/arithmetic_tasks/FIR_filters/config/config.txt
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/FIR_filters/config/config.txt
@@ -102,14 +102,17 @@ circuit_list_add=fir_nopipe_52.v
# Add architectures to list to sweep
arch_list_add=k6_N8_gate_boost_0.2V_22nm.xml
-arch_list_add=k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml
-arch_list_add=k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml
+#arch_list_add=k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml
+#arch_list_add=k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml
arch_list_add=k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml
arch_list_add=k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml
# Parse info and how to parse
parse_file=vpr_chain.txt
+# How to parse QoR info
+qor_parse_file=qor_standard.txt
+
# Pass requirements
pass_requirements_file=pass_requirements_chain.txt
diff --git a/vtr_flow/tasks/arithmetic_tasks/FIR_filters_frac/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/FIR_filters_frac/config/config.txt
similarity index 98%
rename from vtr_flow/tasks/arithmetic_tasks/FIR_filters_frac/config/config.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/FIR_filters_frac/config/config.txt
index e8f7ebe78e4..9cd3cc14274 100644
--- a/vtr_flow/tasks/arithmetic_tasks/FIR_filters_frac/config/config.txt
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/FIR_filters_frac/config/config.txt
@@ -110,6 +110,9 @@ arch_list_add=k6_frac_uripple_N8_22nm.xml
# Parse info and how to parse
parse_file=vpr_chain.txt
+# How to parse QoR info
+qor_parse_file=qor_standard.txt
+
# Pass requirements
pass_requirements_file=pass_requirements_chain.txt
diff --git a/vtr_flow/tasks/arithmetic_tasks/adder_trees/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/adder_trees/config/config.txt
similarity index 98%
rename from vtr_flow/tasks/arithmetic_tasks/adder_trees/config/config.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/adder_trees/config/config.txt
index 52feb579b4a..789e94c56a5 100644
--- a/vtr_flow/tasks/arithmetic_tasks/adder_trees/config/config.txt
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/adder_trees/config/config.txt
@@ -81,6 +81,9 @@ arch_list_add=fixed_k6_frac_uripple_N8_22nm.xml
# Parse info and how to parse
parse_file=vpr_chain.txt
+# How to parse QoR info
+qor_parse_file=qor_standard.txt
+
# Pass requirements
pass_requirements_file=pass_requirements_chain.txt
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/adder_trees/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/adder_trees/config/golden_results.txt
new file mode 100644
index 00000000000..b51c607d059
--- /dev/null
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/adder_trees/config/golden_results.txt
@@ -0,0 +1,541 @@
+ 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
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_tree_2L_004bits.v common 1.32 0.01 6220 0 0.01 -1 -1 29604 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63096 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_tree_3L_004bits.v common 1.39 0.01 6148 0 0.00 -1 -1 29640 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62892 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_tree_2L_005bits.v common 1.30 0.03 6272 0 0.01 -1 -1 29624 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62988 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_tree_3L_005bits.v common 1.29 0.02 6248 0 0.00 -1 -1 29700 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63076 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.46 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_gate_boost_0.2V_22nm.xml adder_tree_2L_006bits.v common 1.35 0.02 6272 0 0.00 -1 -1 29656 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63032 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.46 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_gate_boost_0.2V_22nm.xml adder_tree_3L_006bits.v common 1.33 0.02 6320 0 0.01 -1 -1 29640 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62972 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_tree_2L_007bits.v common 1.38 0.01 6348 0 0.01 -1 -1 29680 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62940 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.46 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_gate_boost_0.2V_22nm.xml adder_tree_3L_007bits.v common 1.33 0.01 6396 0 0.00 -1 -1 29812 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62940 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_gate_boost_0.2V_22nm.xml adder_tree_2L_008bits.v common 1.32 0.02 6472 0 0.01 -1 -1 29720 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62960 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_gate_boost_0.2V_22nm.xml adder_tree_3L_008bits.v common 1.44 0.02 6388 0 0.01 -1 -1 29588 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62960 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_gate_boost_0.2V_22nm.xml adder_tree_2L_009bits.v common 1.37 0.02 6444 0 0.00 -1 -1 29612 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62812 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.46 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_gate_boost_0.2V_22nm.xml adder_tree_3L_009bits.v common 1.37 0.02 6448 0 0.00 -1 -1 29616 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62780 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_gate_boost_0.2V_22nm.xml adder_tree_2L_010bits.v common 1.33 0.03 6500 0 0.00 -1 -1 29636 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62880 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_tree_3L_010bits.v common 1.36 0.03 6536 0 0.01 -1 -1 29604 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62900 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_tree_2L_011bits.v common 1.43 0.03 6564 0 0.02 -1 -1 29676 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62968 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_tree_3L_011bits.v common 1.43 0.03 6636 0 0.01 -1 -1 29624 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63084 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_tree_2L_012bits.v common 1.35 0.03 6604 0 0.00 -1 -1 29588 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62740 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_tree_3L_012bits.v common 1.35 0.03 6608 0 0.00 -1 -1 29596 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63132 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_tree_2L_013bits.v common 1.32 0.03 6692 0 0.00 -1 -1 29780 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63068 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_tree_3L_013bits.v common 1.34 0.02 6652 0 0.00 -1 -1 29676 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62848 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_tree_2L_014bits.v common 1.32 0.02 6672 0 0.00 -1 -1 29832 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63016 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_tree_3L_014bits.v common 1.34 0.03 6696 0 0.01 -1 -1 29684 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63020 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_tree_2L_015bits.v common 1.34 0.03 6824 0 0.00 -1 -1 29684 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63044 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_tree_3L_015bits.v common 1.37 0.02 6880 0 0.01 -1 -1 29824 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63136 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_tree_2L_016bits.v common 1.35 0.03 6860 0 0.01 -1 -1 29688 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62736 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_tree_3L_016bits.v common 1.38 0.02 6948 0 0.01 -1 -1 29700 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63176 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_tree_2L_017bits.v common 1.34 0.03 6952 0 0.01 -1 -1 29668 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62780 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_tree_3L_017bits.v common 1.34 0.03 6920 0 0.00 -1 -1 29736 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63112 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_tree_2L_018bits.v common 1.42 0.02 6968 0 0.00 -1 -1 29756 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63020 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_tree_3L_018bits.v common 1.37 0.03 6972 0 0.00 -1 -1 29792 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63220 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.51 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_gate_boost_0.2V_22nm.xml adder_tree_2L_019bits.v common 1.33 0.04 7052 0 0.00 -1 -1 29716 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63192 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_tree_3L_019bits.v common 1.28 0.02 7088 0 0.00 -1 -1 29664 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63124 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.46 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_gate_boost_0.2V_22nm.xml adder_tree_2L_020bits.v common 1.39 0.04 7084 0 0.00 -1 -1 29704 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63196 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.46 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_gate_boost_0.2V_22nm.xml adder_tree_3L_020bits.v common 1.37 0.03 7100 0 0.01 -1 -1 29676 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63032 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_tree_2L_021bits.v common 1.36 0.03 7120 0 0.01 -1 -1 29744 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63268 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_tree_3L_021bits.v common 1.35 0.04 7080 0 0.01 -1 -1 29668 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63196 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_gate_boost_0.2V_22nm.xml adder_tree_2L_022bits.v common 1.34 0.03 7104 0 0.00 -1 -1 29708 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63064 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.46 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_gate_boost_0.2V_22nm.xml adder_tree_3L_022bits.v common 1.32 0.02 7172 0 0.00 -1 -1 29744 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63204 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_tree_2L_023bits.v common 1.37 0.04 7192 0 0.01 -1 -1 29688 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62848 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_tree_3L_023bits.v common 1.33 0.03 7228 0 0.01 -1 -1 29688 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63252 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_tree_2L_024bits.v common 1.36 0.03 7276 0 0.00 -1 -1 29740 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62840 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_tree_3L_024bits.v common 1.34 0.04 7280 0 0.00 -1 -1 29660 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63096 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_gate_boost_0.2V_22nm.xml adder_tree_2L_028bits.v common 1.39 0.04 7564 0 0.00 -1 -1 29724 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63132 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_gate_boost_0.2V_22nm.xml adder_tree_3L_028bits.v common 1.45 0.04 7496 0 0.00 -1 -1 29780 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63044 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_tree_2L_032bits.v common 1.44 0.05 7680 0 0.00 -1 -1 29704 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63372 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.54 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_tree_3L_032bits.v common 1.49 0.04 7732 0 0.00 -1 -1 29700 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62912 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.55 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_gate_boost_0.2V_22nm.xml adder_tree_2L_048bits.v common 1.41 0.06 8524 0 0.01 -1 -1 29784 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63264 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_gate_boost_0.2V_22nm.xml adder_tree_3L_048bits.v common 1.38 0.06 8524 0 0.01 -1 -1 29724 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63484 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_tree_2L_064bits.v common 1.36 0.05 9368 0 0.02 -1 -1 29840 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63512 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_tree_3L_064bits.v common 1.43 0.07 9372 0 0.00 -1 -1 29920 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63488 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_tree_2L_096bits.v common 1.42 0.12 10960 0 0.01 -1 -1 30004 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63064 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_tree_3L_096bits.v common 1.54 0.09 11036 0 0.01 -1 -1 30032 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63084 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.54 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_tree_2L_128bits.v common 1.43 0.11 12844 0 0.01 -1 -1 30276 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62756 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_tree_3L_128bits.v common 1.44 0.11 12768 0 0.02 -1 -1 30308 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63172 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.46 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_tree_2L_004bits.v common 1.36 0.02 6224 0 0.00 -1 -1 29808 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63636 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_004bits.v common 1.32 0.02 6276 0 0.00 -1 -1 29788 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63536 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.46 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_005bits.v common 1.44 0.02 6288 0 0.01 -1 -1 29880 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63092 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.54 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_005bits.v common 1.31 0.02 6268 0 0.01 -1 -1 29752 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63524 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_006bits.v common 1.32 0.03 6360 0 0.00 -1 -1 29792 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63164 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.46 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_006bits.v common 1.35 0.01 6440 0 0.01 -1 -1 29848 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63316 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_007bits.v common 1.35 0.02 6328 0 0.01 -1 -1 29788 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63436 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_007bits.v common 1.36 0.03 6332 0 0.00 -1 -1 29948 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63472 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_008bits.v common 1.32 0.02 6444 0 0.00 -1 -1 29764 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63128 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_008bits.v common 1.32 0.02 6400 0 0.01 -1 -1 29808 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63432 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_009bits.v common 1.34 0.03 6484 0 0.00 -1 -1 29724 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63420 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_009bits.v common 1.44 0.02 6516 0 0.00 -1 -1 29740 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63480 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_010bits.v common 1.35 0.02 6500 0 0.01 -1 -1 29688 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63672 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_010bits.v common 1.43 0.02 6552 0 0.00 -1 -1 29612 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63592 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_011bits.v common 1.39 0.03 6640 0 0.01 -1 -1 29668 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63432 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.51 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_011bits.v common 1.39 0.03 6532 0 0.00 -1 -1 29784 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63664 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_012bits.v common 1.46 0.02 6712 0 0.01 -1 -1 29724 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63308 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.53 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_012bits.v common 1.36 0.03 6668 0 0.01 -1 -1 29760 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63232 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_013bits.v common 1.39 0.03 6716 0 0.00 -1 -1 29800 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63304 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_013bits.v common 1.33 0.02 6660 0 0.00 -1 -1 29720 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63376 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_014bits.v common 1.39 0.03 6740 0 0.01 -1 -1 29788 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63072 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_014bits.v common 1.33 0.03 6736 0 0.00 -1 -1 29888 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63268 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_015bits.v common 1.38 0.03 6788 0 0.01 -1 -1 29780 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63212 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_015bits.v common 1.34 0.03 6712 0 0.01 -1 -1 29836 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63356 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_016bits.v common 1.34 0.03 6784 0 0.01 -1 -1 29692 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63180 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.46 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_016bits.v common 1.33 0.03 6764 0 0.00 -1 -1 29732 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63360 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_017bits.v common 1.46 0.04 6880 0 0.01 -1 -1 29812 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63136 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_017bits.v common 1.39 0.03 6868 0 0.00 -1 -1 29736 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63356 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_018bits.v common 1.36 0.02 6896 0 0.00 -1 -1 29844 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63428 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_018bits.v common 1.34 0.03 6836 0 0.00 -1 -1 29804 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63156 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_019bits.v common 1.35 0.02 6904 0 0.00 -1 -1 29740 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63524 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_019bits.v common 1.42 0.03 6972 0 0.00 -1 -1 29712 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63188 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_020bits.v common 1.33 0.03 7112 0 0.01 -1 -1 29748 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63360 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_020bits.v common 1.43 0.03 7004 0 0.01 -1 -1 29744 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63240 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_021bits.v common 1.38 0.03 7116 0 0.01 -1 -1 29752 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63512 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_021bits.v common 1.40 0.03 7096 0 0.01 -1 -1 29692 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63216 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_022bits.v common 1.39 0.03 7080 0 0.01 -1 -1 29764 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63512 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_022bits.v common 1.39 0.02 7076 0 0.01 -1 -1 29732 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63348 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_023bits.v common 1.39 0.03 7200 0 0.01 -1 -1 29732 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63300 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_023bits.v common 1.63 0.03 7200 0 0.01 -1 -1 29688 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63624 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.52 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_024bits.v common 1.37 0.04 7148 0 0.00 -1 -1 29820 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63164 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_024bits.v common 1.34 0.02 7172 0 0.01 -1 -1 29692 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63264 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.46 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_028bits.v common 1.34 0.04 7420 0 0.00 -1 -1 29820 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63416 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_028bits.v common 1.33 0.03 7288 0 0.01 -1 -1 29744 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63680 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_032bits.v common 1.38 0.04 7432 0 0.01 -1 -1 29716 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63524 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_032bits.v common 1.34 0.03 7488 0 0.01 -1 -1 29772 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63636 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.46 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_048bits.v common 1.41 0.05 8196 0 0.01 -1 -1 29840 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63472 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_048bits.v common 1.46 0.06 8096 0 0.01 -1 -1 29720 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63724 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_064bits.v common 1.38 0.05 8872 0 0.01 -1 -1 29952 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63572 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_064bits.v common 1.38 0.07 8800 0 0.01 -1 -1 29872 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63376 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_096bits.v common 1.49 0.07 10116 0 0.01 -1 -1 30060 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64132 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.51 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_096bits.v common 1.40 0.08 10024 0 0.02 -1 -1 30084 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63544 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_128bits.v common 1.51 0.15 11472 0 0.01 -1 -1 30320 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63652 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_128bits.v common 1.44 0.11 11448 0 0.01 -1 -1 30388 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63712 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.46 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_004bits.v common 1.37 0.02 6248 0 0.00 -1 -1 29676 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63244 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_004bits.v common 1.50 0.02 6288 0 0.00 -1 -1 29692 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63280 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_005bits.v common 1.32 0.02 6352 0 0.01 -1 -1 29788 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63244 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_005bits.v common 1.33 0.02 6396 0 0.01 -1 -1 29700 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63240 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_006bits.v common 1.31 0.02 6320 0 0.01 -1 -1 29892 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63448 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_006bits.v common 1.36 0.02 6400 0 0.00 -1 -1 29684 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63416 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_007bits.v common 1.31 0.02 6484 0 0.00 -1 -1 29820 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63344 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_007bits.v common 1.40 0.01 6336 0 0.00 -1 -1 29772 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63192 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_008bits.v common 1.29 0.01 6396 0 0.01 -1 -1 29716 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63300 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_008bits.v common 1.40 0.03 6452 0 0.00 -1 -1 29724 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63276 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.51 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_009bits.v common 1.38 0.02 6508 0 0.01 -1 -1 29772 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62940 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_009bits.v common 1.44 0.02 6496 0 0.00 -1 -1 29752 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63172 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_010bits.v common 1.34 0.03 6536 0 0.00 -1 -1 29724 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63436 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_010bits.v common 1.33 0.02 6564 0 0.01 -1 -1 29624 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62916 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_011bits.v common 1.52 0.02 6608 0 0.01 -1 -1 29668 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63464 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.67 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_011bits.v common 1.39 0.02 6608 0 0.00 -1 -1 29656 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63372 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_012bits.v common 1.35 0.02 6616 0 0.00 -1 -1 29724 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63288 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_012bits.v common 1.34 0.03 6584 0 0.00 -1 -1 29760 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63116 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_013bits.v common 1.38 0.02 6676 0 0.00 -1 -1 29632 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63284 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_013bits.v common 1.38 0.03 6628 0 0.00 -1 -1 29724 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63108 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_014bits.v common 1.44 0.03 6688 0 0.00 -1 -1 29624 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63484 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_014bits.v common 1.33 0.02 6820 0 0.00 -1 -1 29792 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63396 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.01 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_015bits.v common 1.40 0.03 6776 0 0.01 -1 -1 29788 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62944 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_015bits.v common 1.34 0.02 6744 0 0.00 -1 -1 29640 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63584 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_016bits.v common 1.39 0.04 6844 0 0.00 -1 -1 29732 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63068 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_016bits.v common 1.36 0.04 6840 0 0.00 -1 -1 29724 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63236 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_017bits.v common 1.46 0.03 6884 0 0.00 -1 -1 29800 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63096 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.58 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_017bits.v common 1.34 0.03 6872 0 0.01 -1 -1 29776 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63240 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_018bits.v common 1.39 0.02 6844 0 0.00 -1 -1 29796 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63168 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_018bits.v common 1.37 0.02 6936 0 0.00 -1 -1 29808 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62956 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_019bits.v common 1.36 0.02 6936 0 0.00 -1 -1 29856 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63156 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_019bits.v common 1.31 0.03 6968 0 0.01 -1 -1 29820 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62840 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_020bits.v common 1.37 0.04 6952 0 0.01 -1 -1 29824 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63232 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_020bits.v common 1.34 0.03 7036 0 0.01 -1 -1 29880 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63080 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.46 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_021bits.v common 1.50 0.04 7020 0 0.01 -1 -1 29720 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63140 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_021bits.v common 1.38 0.03 7048 0 0.01 -1 -1 29800 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63332 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.46 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_022bits.v common 1.48 0.03 7060 0 0.01 -1 -1 29836 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63096 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_022bits.v common 1.40 0.03 7084 0 0.00 -1 -1 29708 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63288 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.51 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_023bits.v common 1.48 0.03 7192 0 0.00 -1 -1 29804 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63324 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_023bits.v common 1.38 0.03 7104 0 0.01 -1 -1 29844 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63108 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_024bits.v common 1.36 0.04 7232 0 0.00 -1 -1 29744 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63068 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_024bits.v common 1.35 0.04 7104 0 0.01 -1 -1 29760 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63208 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_028bits.v common 1.40 0.04 7344 0 0.00 -1 -1 29744 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63404 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_028bits.v common 1.38 0.03 7264 0 0.00 -1 -1 29716 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63296 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_032bits.v common 1.36 0.04 7420 0 0.00 -1 -1 29824 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63408 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_032bits.v common 1.34 0.05 7432 0 0.00 -1 -1 29744 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63248 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_048bits.v common 1.33 0.06 8108 0 0.01 -1 -1 29748 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63452 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_048bits.v common 1.31 0.04 8076 0 0.00 -1 -1 29916 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63320 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_064bits.v common 1.37 0.06 8780 0 0.01 -1 -1 30016 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63664 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_064bits.v common 1.38 0.06 8816 0 0.01 -1 -1 30032 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63412 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_096bits.v common 1.47 0.12 10152 0 0.01 -1 -1 29944 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63548 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_096bits.v common 1.41 0.08 10084 0 0.01 -1 -1 29996 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63804 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_128bits.v common 1.41 0.11 11424 0 0.01 -1 -1 30300 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63292 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.46 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_128bits.v common 1.49 0.11 11524 0 0.01 -1 -1 30324 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64184 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.54 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_004bits.v common 1.30 0.01 6320 0 0.00 -1 -1 29720 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63104 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_004bits.v common 1.42 0.01 6324 0 0.01 -1 -1 29760 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63308 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_005bits.v common 1.33 0.02 6308 0 0.01 -1 -1 29860 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63160 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_005bits.v common 1.73 0.03 6216 0 0.00 -1 -1 29912 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63140 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.60 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_006bits.v common 1.41 0.02 6420 0 0.00 -1 -1 29788 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62980 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.53 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_006bits.v common 1.36 0.03 6356 0 0.00 -1 -1 29844 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63012 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_007bits.v common 1.30 0.01 6332 0 0.00 -1 -1 29804 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63232 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_007bits.v common 1.35 0.01 6400 0 0.01 -1 -1 29696 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63640 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_008bits.v common 1.33 0.02 6372 0 0.00 -1 -1 29732 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63328 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.01 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_008bits.v common 1.30 0.02 6404 0 0.01 -1 -1 29676 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63208 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_009bits.v common 1.44 0.03 6544 0 0.01 -1 -1 29804 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63336 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_009bits.v common 1.33 0.02 6460 0 0.00 -1 -1 29672 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63488 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_010bits.v common 1.36 0.02 6444 0 0.00 -1 -1 29768 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63304 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_010bits.v common 1.32 0.01 6600 0 0.00 -1 -1 29648 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63152 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_011bits.v common 1.31 0.02 6644 0 0.00 -1 -1 29724 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63452 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_011bits.v common 1.42 0.03 6564 0 0.01 -1 -1 29648 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63256 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_012bits.v common 1.32 0.02 6684 0 0.00 -1 -1 29720 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63520 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_012bits.v common 1.44 0.03 6664 0 0.01 -1 -1 29760 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63420 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_013bits.v common 1.33 0.02 6704 0 0.00 -1 -1 29740 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63196 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_013bits.v common 1.30 0.02 6672 0 0.00 -1 -1 29668 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63324 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_014bits.v common 1.48 0.03 6644 0 0.00 -1 -1 29712 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63360 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.52 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_014bits.v common 1.45 0.02 6716 0 0.01 -1 -1 29692 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63520 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_015bits.v common 1.35 0.03 6768 0 0.01 -1 -1 29640 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63344 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_015bits.v common 1.35 0.03 6764 0 0.01 -1 -1 29624 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63368 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_016bits.v common 1.38 0.03 6820 0 0.01 -1 -1 29692 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63040 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_016bits.v common 1.35 0.03 6864 0 0.00 -1 -1 29704 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63196 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_017bits.v common 1.32 0.03 6848 0 0.00 -1 -1 29740 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63188 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.46 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_017bits.v common 1.32 0.03 6860 0 0.00 -1 -1 29692 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63132 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_018bits.v common 1.39 0.03 6840 0 0.00 -1 -1 29820 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63212 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_018bits.v common 1.33 0.03 6848 0 0.00 -1 -1 29804 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63164 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_019bits.v common 1.32 0.02 6932 0 0.00 -1 -1 29784 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62948 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_019bits.v common 1.34 0.04 6932 0 0.00 -1 -1 29736 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62940 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.46 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_020bits.v common 1.35 0.04 6912 0 0.00 -1 -1 29760 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63380 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_020bits.v common 1.30 0.02 6988 0 0.00 -1 -1 29804 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63200 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_021bits.v common 1.37 0.03 7032 0 0.00 -1 -1 29712 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63244 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_021bits.v common 1.37 0.03 7028 0 0.00 -1 -1 29828 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63064 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_022bits.v common 1.32 0.03 7032 0 0.01 -1 -1 29788 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63132 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_022bits.v common 1.39 0.03 7152 0 0.00 -1 -1 29776 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63432 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_023bits.v common 1.33 0.04 7156 0 0.00 -1 -1 29752 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63548 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_023bits.v common 1.33 0.04 7100 0 0.01 -1 -1 29784 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63476 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_024bits.v common 1.38 0.04 7112 0 0.01 -1 -1 29752 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63544 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_024bits.v common 1.38 0.02 7164 0 0.01 -1 -1 29692 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63360 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_028bits.v common 1.35 0.04 7396 0 0.00 -1 -1 29840 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63152 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_028bits.v common 1.48 0.03 7368 0 0.00 -1 -1 29760 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63172 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_032bits.v common 1.48 0.03 7480 0 0.01 -1 -1 29824 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63432 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_032bits.v common 1.31 0.04 7460 0 0.02 -1 -1 29716 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63460 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_048bits.v common 1.38 0.06 8180 0 0.01 -1 -1 29724 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63672 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_048bits.v common 1.35 0.04 8272 0 0.01 -1 -1 29744 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63388 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_064bits.v common 1.41 0.05 9088 0 0.01 -1 -1 30084 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63472 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_064bits.v common 1.40 0.08 9016 0 0.01 -1 -1 29976 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63668 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_096bits.v common 1.49 0.11 10484 0 0.01 -1 -1 29980 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63460 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_096bits.v common 1.43 0.08 10464 0 0.01 -1 -1 29988 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63440 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.51 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_128bits.v common 1.44 0.11 11964 0 0.01 -1 -1 30340 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63264 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_128bits.v common 1.42 0.11 11956 0 0.01 -1 -1 30288 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63804 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_004bits.v common 1.32 0.02 6280 0 0.00 -1 -1 29656 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63368 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.46 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_004bits.v common 1.36 0.02 6264 0 0.01 -1 -1 29720 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63172 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.46 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_005bits.v common 1.40 0.01 6236 0 0.00 -1 -1 29832 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63044 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.46 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_005bits.v common 1.37 0.03 6288 0 0.00 -1 -1 29788 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63028 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_006bits.v common 1.38 0.02 6264 0 0.01 -1 -1 29784 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63116 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_006bits.v common 1.37 0.02 6340 0 0.01 -1 -1 29916 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63168 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_007bits.v common 1.40 0.03 6328 0 0.01 -1 -1 29684 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62912 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_007bits.v common 1.42 0.03 6360 0 0.01 -1 -1 29684 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63016 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_008bits.v common 1.34 0.03 6424 0 0.01 -1 -1 29700 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62916 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_008bits.v common 1.38 0.02 6348 0 0.00 -1 -1 29708 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63192 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_009bits.v common 1.43 0.02 6540 0 0.00 -1 -1 29764 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63260 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_009bits.v common 1.41 0.02 6468 0 0.01 -1 -1 29728 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63332 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_010bits.v common 1.45 0.02 6524 0 0.01 -1 -1 29712 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63576 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_010bits.v common 1.37 0.03 6564 0 0.00 -1 -1 29692 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63160 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_011bits.v common 1.34 0.02 6564 0 0.01 -1 -1 29768 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63092 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_011bits.v common 1.33 0.02 6544 0 0.00 -1 -1 29656 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63264 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_012bits.v common 1.35 0.04 6596 0 0.00 -1 -1 29688 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63024 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_012bits.v common 1.33 0.02 6588 0 0.00 -1 -1 29708 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63456 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_013bits.v common 1.32 0.03 6584 0 0.00 -1 -1 29780 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63128 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_013bits.v common 1.36 0.03 6736 0 0.00 -1 -1 29792 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63300 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_014bits.v common 1.32 0.03 6704 0 0.00 -1 -1 29720 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63316 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.46 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_014bits.v common 1.32 0.03 6716 0 0.00 -1 -1 29680 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63348 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.46 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_015bits.v common 1.32 0.03 6768 0 0.00 -1 -1 29684 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63020 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_015bits.v common 1.49 0.02 6804 0 0.01 -1 -1 29632 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62924 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.53 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_016bits.v common 1.36 0.02 6896 0 0.01 -1 -1 29768 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62824 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_016bits.v common 1.34 0.03 6820 0 0.00 -1 -1 29736 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63260 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_017bits.v common 1.42 0.03 6852 0 0.01 -1 -1 29688 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62792 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_017bits.v common 1.36 0.03 6928 0 0.01 -1 -1 29804 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62956 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_018bits.v common 1.41 0.03 6884 0 0.01 -1 -1 29712 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63012 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.55 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_018bits.v common 1.39 0.03 6820 0 0.01 -1 -1 29700 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63060 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_019bits.v common 1.32 0.03 6932 0 0.01 -1 -1 29848 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63060 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_019bits.v common 1.33 0.03 6888 0 0.00 -1 -1 29764 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63468 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_020bits.v common 1.38 0.03 6912 0 0.01 -1 -1 29704 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63256 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_020bits.v common 1.31 0.03 6960 0 0.00 -1 -1 29716 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62956 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_021bits.v common 1.34 0.03 7052 0 0.00 -1 -1 29828 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63192 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_021bits.v common 1.38 0.03 7032 0 0.01 -1 -1 29848 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62884 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_022bits.v common 1.34 0.04 7032 0 0.00 -1 -1 29716 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63172 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_022bits.v common 1.35 0.03 7108 0 0.00 -1 -1 29716 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63388 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_023bits.v common 1.34 0.03 7072 0 0.00 -1 -1 29772 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62984 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_023bits.v common 1.36 0.04 7068 0 0.01 -1 -1 29776 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63128 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_024bits.v common 1.36 0.04 7196 0 0.01 -1 -1 29696 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63364 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_024bits.v common 1.39 0.04 7176 0 0.00 -1 -1 29876 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63384 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_028bits.v common 1.32 0.03 7340 0 0.00 -1 -1 29816 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63200 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_028bits.v common 1.34 0.03 7368 0 0.01 -1 -1 29804 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63424 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_032bits.v common 1.46 0.05 7604 0 0.02 -1 -1 29812 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63392 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_032bits.v common 1.37 0.03 7536 0 0.01 -1 -1 29832 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63084 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_048bits.v common 1.34 0.06 8208 0 0.00 -1 -1 29836 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63448 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_048bits.v common 1.36 0.05 8224 0 0.01 -1 -1 29844 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63600 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_064bits.v common 1.39 0.08 8956 0 0.01 -1 -1 29996 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63740 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_064bits.v common 1.39 0.07 8948 0 0.01 -1 -1 29964 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63292 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_096bits.v common 1.45 0.10 10496 0 0.01 -1 -1 29992 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63020 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_096bits.v common 1.44 0.09 10484 0 0.01 -1 -1 29992 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62952 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_2L_128bits.v common 1.53 0.12 11992 0 0.01 -1 -1 30360 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63000 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_tree_3L_128bits.v common 1.46 0.14 12092 0 0.01 -1 -1 30280 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63108 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_2L_004bits.v common 1.68 0.01 6332 0 0.01 -1 -1 29664 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62260 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_3L_004bits.v common 1.37 0.03 6264 0 0.00 -1 -1 29696 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63528 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_2L_005bits.v common 1.37 0.02 6288 0 0.00 -1 -1 29900 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62216 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_3L_005bits.v common 1.59 0.02 6324 0 0.00 -1 -1 29856 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63840 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_2L_006bits.v common 1.39 0.02 6372 0 0.00 -1 -1 29788 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62000 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_3L_006bits.v common 1.39 0.02 6392 0 0.01 -1 -1 29876 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62380 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_2L_007bits.v common 1.41 0.02 6396 0 0.01 -1 -1 29904 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62220 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_3L_007bits.v common 1.39 0.02 6468 0 0.01 -1 -1 29852 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62284 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_2L_008bits.v common 1.35 0.03 6420 0 0.01 -1 -1 29704 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62264 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_3L_008bits.v common 1.37 0.02 6568 0 0.00 -1 -1 29728 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62260 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_2L_009bits.v common 1.37 0.03 6464 0 0.00 -1 -1 29744 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64076 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_3L_009bits.v common 1.35 0.01 6408 0 0.00 -1 -1 29788 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62188 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_2L_010bits.v common 1.42 0.02 6484 0 0.00 -1 -1 29784 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62388 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.51 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_3L_010bits.v common 1.41 0.02 6480 0 0.01 -1 -1 29828 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64016 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_2L_011bits.v common 1.48 0.03 6656 0 0.01 -1 -1 29732 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62456 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_3L_011bits.v common 1.36 0.03 6656 0 0.00 -1 -1 29608 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62220 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_2L_012bits.v common 1.36 0.03 6620 0 0.01 -1 -1 29736 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64044 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_3L_012bits.v common 1.42 0.03 6660 0 0.00 -1 -1 29704 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63580 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_2L_013bits.v common 1.39 0.02 6664 0 0.01 -1 -1 29740 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62112 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_3L_013bits.v common 1.57 0.03 6704 0 0.01 -1 -1 29704 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62508 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_2L_014bits.v common 1.44 0.02 6716 0 0.01 -1 -1 29772 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62476 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.53 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_3L_014bits.v common 1.37 0.03 6716 0 0.00 -1 -1 29776 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62212 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_2L_015bits.v common 1.37 0.02 6712 0 0.00 -1 -1 29748 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63564 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_3L_015bits.v common 1.38 0.02 6816 0 0.01 -1 -1 29644 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62544 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_2L_016bits.v common 1.38 0.04 6828 0 0.01 -1 -1 29780 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63984 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_3L_016bits.v common 1.42 0.03 6760 0 0.01 -1 -1 29740 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63744 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_2L_017bits.v common 1.36 0.03 6848 0 0.00 -1 -1 29752 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62576 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_3L_017bits.v common 1.43 0.03 6940 0 0.00 -1 -1 29764 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62688 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_2L_018bits.v common 1.63 0.03 6888 0 0.01 -1 -1 29740 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64000 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_3L_018bits.v common 1.41 0.03 6836 0 0.00 -1 -1 29712 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63864 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.51 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_2L_019bits.v common 1.41 0.03 6944 0 0.02 -1 -1 29772 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62564 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.53 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_3L_019bits.v common 1.33 0.02 6928 0 0.00 -1 -1 29800 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63812 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_2L_020bits.v common 1.51 0.04 6992 0 0.00 -1 -1 29768 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63852 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.54 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_3L_020bits.v common 1.42 0.03 7076 0 0.01 -1 -1 29744 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64216 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_2L_021bits.v common 1.39 0.03 7036 0 0.00 -1 -1 29720 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62412 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_3L_021bits.v common 1.61 0.03 7052 0 0.00 -1 -1 29776 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62416 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.55 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_2L_022bits.v common 1.46 0.04 7124 0 0.01 -1 -1 29808 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64240 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.52 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_3L_022bits.v common 1.45 0.03 7080 0 0.00 -1 -1 29792 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63952 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.55 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_2L_023bits.v common 1.38 0.04 7060 0 0.00 -1 -1 29776 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62472 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_3L_023bits.v common 1.44 0.04 7060 0 0.01 -1 -1 29876 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63740 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.51 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_2L_024bits.v common 1.56 0.04 7212 0 0.00 -1 -1 29772 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62160 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.60 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_3L_024bits.v common 1.38 0.03 7172 0 0.00 -1 -1 29808 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64024 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_2L_028bits.v common 1.37 0.04 7328 0 0.00 -1 -1 29724 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63764 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_3L_028bits.v common 1.42 0.04 7296 0 0.01 -1 -1 29784 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62356 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.53 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_2L_032bits.v common 1.38 0.04 7500 0 0.01 -1 -1 29756 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 61420 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_3L_032bits.v common 1.43 0.04 7528 0 0.00 -1 -1 29772 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63956 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.52 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_2L_048bits.v common 1.46 0.06 8220 0 0.00 -1 -1 29800 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64324 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_3L_048bits.v common 1.38 0.05 8272 0 0.01 -1 -1 29852 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 61504 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_2L_064bits.v common 1.42 0.05 8952 0 0.01 -1 -1 30000 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64040 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_3L_064bits.v common 1.44 0.06 9020 0 0.01 -1 -1 30100 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64288 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_2L_096bits.v common 1.45 0.08 10564 0 0.02 -1 -1 29992 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64148 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_3L_096bits.v common 1.51 0.12 10492 0 0.01 -1 -1 29936 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63816 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_2L_128bits.v common 1.50 0.11 12032 0 0.01 -1 -1 30348 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64756 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_tree_3L_128bits.v common 1.50 0.15 12056 0 0.01 -1 -1 30272 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64332 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_2L_004bits.v common 1.40 0.02 6340 0 0.00 -1 -1 29708 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63920 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_3L_004bits.v common 1.37 0.02 6268 0 0.00 -1 -1 29692 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63944 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_2L_005bits.v common 1.61 0.02 6340 0 0.00 -1 -1 29868 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63816 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_3L_005bits.v common 1.39 0.02 6292 0 0.01 -1 -1 29684 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63796 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.54 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_2L_006bits.v common 1.35 0.03 6376 0 0.00 -1 -1 29684 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63796 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_3L_006bits.v common 1.58 0.02 6352 0 0.01 -1 -1 29716 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63580 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.60 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_2L_007bits.v common 1.35 0.03 6340 0 0.00 -1 -1 29764 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63772 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_3L_007bits.v common 1.40 0.03 6340 0 0.00 -1 -1 29808 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64024 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.51 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_2L_008bits.v common 1.42 0.02 6428 0 0.00 -1 -1 29752 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63948 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_3L_008bits.v common 1.44 0.03 6512 0 0.01 -1 -1 29768 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63508 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.51 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_2L_009bits.v common 1.39 0.02 6480 0 0.01 -1 -1 29816 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63440 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.51 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_3L_009bits.v common 1.40 0.02 6468 0 0.00 -1 -1 29768 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63856 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_2L_010bits.v common 1.37 0.01 6536 0 0.00 -1 -1 29736 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63620 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_3L_010bits.v common 1.33 0.02 6536 0 0.00 -1 -1 29676 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63852 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_2L_011bits.v common 1.35 0.03 6660 0 0.01 -1 -1 29756 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63864 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_3L_011bits.v common 1.51 0.03 6584 0 0.01 -1 -1 29716 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63588 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_2L_012bits.v common 1.41 0.03 6632 0 0.00 -1 -1 29716 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64020 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_3L_012bits.v common 1.38 0.02 6700 0 0.01 -1 -1 29788 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63688 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_2L_013bits.v common 1.43 0.02 6672 0 0.01 -1 -1 29768 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63692 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_3L_013bits.v common 1.34 0.02 6624 0 0.00 -1 -1 29748 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63628 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_2L_014bits.v common 1.53 0.02 6768 0 0.00 -1 -1 29636 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63820 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.57 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_3L_014bits.v common 1.37 0.02 6772 0 0.01 -1 -1 29640 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63780 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_2L_015bits.v common 1.39 0.03 6760 0 0.01 -1 -1 29636 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63848 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_3L_015bits.v common 1.56 0.03 6708 0 0.01 -1 -1 29708 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63896 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_2L_016bits.v common 1.47 0.03 6808 0 0.01 -1 -1 29792 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63992 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.54 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_3L_016bits.v common 1.45 0.03 6832 0 0.01 -1 -1 29772 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63868 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.52 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_2L_017bits.v common 1.37 0.03 6896 0 0.00 -1 -1 29712 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64008 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_3L_017bits.v common 1.54 0.03 6948 0 0.00 -1 -1 29760 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63776 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.63 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_2L_018bits.v common 1.48 0.03 6836 0 0.01 -1 -1 29756 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63668 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.54 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_3L_018bits.v common 1.37 0.03 6852 0 0.00 -1 -1 29724 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63968 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_2L_019bits.v common 1.39 0.03 6940 0 0.00 -1 -1 29716 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63812 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_3L_019bits.v common 1.38 0.02 6928 0 0.00 -1 -1 29832 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63728 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_2L_020bits.v common 1.40 0.03 7080 0 0.00 -1 -1 29832 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63632 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_3L_020bits.v common 1.37 0.02 6976 0 0.00 -1 -1 29816 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63732 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_2L_021bits.v common 1.43 0.04 7036 0 0.00 -1 -1 29748 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63620 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_3L_021bits.v common 1.49 0.03 7120 0 0.01 -1 -1 29824 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64120 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_2L_022bits.v common 1.41 0.04 7124 0 0.00 -1 -1 29804 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64128 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_3L_022bits.v common 1.55 0.03 7172 0 0.01 -1 -1 29712 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64236 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.59 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_2L_023bits.v common 1.37 0.03 7076 0 0.00 -1 -1 29832 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64036 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_3L_023bits.v common 1.35 0.03 7076 0 0.00 -1 -1 29792 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63712 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_2L_024bits.v common 1.46 0.04 7172 0 0.01 -1 -1 29840 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63748 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_3L_024bits.v common 1.52 0.03 7208 0 0.01 -1 -1 29724 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63968 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_2L_028bits.v common 1.40 0.06 7356 0 0.01 -1 -1 29844 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64016 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_3L_028bits.v common 1.37 0.04 7372 0 0.02 -1 -1 29708 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64084 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_2L_032bits.v common 1.64 0.04 7584 0 0.00 -1 -1 29816 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64188 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.60 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_3L_032bits.v common 1.37 0.04 7548 0 0.02 -1 -1 29800 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63640 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_2L_048bits.v common 1.38 0.06 8248 0 0.01 -1 -1 29796 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63924 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_3L_048bits.v common 1.56 0.05 8268 0 0.01 -1 -1 29748 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64020 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_2L_064bits.v common 1.56 0.08 9040 0 0.01 -1 -1 30104 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64344 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.52 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_3L_064bits.v common 1.52 0.08 9024 0 0.01 -1 -1 29972 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64604 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_2L_096bits.v common 1.54 0.08 10476 0 0.01 -1 -1 30008 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63920 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_3L_096bits.v common 1.59 0.09 10488 0 0.00 -1 -1 29976 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64124 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.54 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_2L_128bits.v common 1.53 0.10 11992 0 0.01 -1 -1 30316 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64508 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.51 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_tree_3L_128bits.v common 1.59 0.11 12000 0 0.01 -1 -1 30416 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64476 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.51 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_N8_22nm.xml adder_tree_2L_004bits.v common 1.36 0.02 6228 0 0.01 -1 -1 29596 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63436 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_3L_004bits.v common 1.36 0.03 6224 0 0.01 -1 -1 29600 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63204 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_2L_005bits.v common 1.39 0.02 6316 0 0.00 -1 -1 29756 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63364 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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
+ fixed_k6_frac_N8_22nm.xml adder_tree_3L_005bits.v common 1.38 0.03 6284 0 0.01 -1 -1 29816 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63520 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_2L_006bits.v common 1.68 0.02 6264 0 0.00 -1 -1 29764 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63548 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.55 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_3L_006bits.v common 1.35 0.03 6340 0 0.01 -1 -1 29624 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63676 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_2L_007bits.v common 1.32 0.02 6348 0 0.01 -1 -1 29752 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63344 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_3L_007bits.v common 1.37 0.02 6320 0 0.00 -1 -1 29724 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63476 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_2L_008bits.v common 1.52 0.02 6412 0 0.00 -1 -1 29636 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63196 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.54 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml adder_tree_3L_008bits.v common 1.39 0.02 6412 0 0.01 -1 -1 29736 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63364 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_2L_009bits.v common 1.43 0.03 6464 0 0.01 -1 -1 29636 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62944 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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
+ fixed_k6_frac_N8_22nm.xml adder_tree_3L_009bits.v common 1.41 0.02 6428 0 0.01 -1 -1 29740 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63156 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.54 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml adder_tree_2L_010bits.v common 1.35 0.03 6468 0 0.00 -1 -1 29684 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63108 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_3L_010bits.v common 1.40 0.02 6596 0 0.00 -1 -1 29644 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63536 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_2L_011bits.v common 1.36 0.02 6608 0 0.01 -1 -1 29704 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63376 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_3L_011bits.v common 1.33 0.03 6576 0 0.01 -1 -1 29852 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63116 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_2L_012bits.v common 1.36 0.03 6708 0 0.00 -1 -1 29760 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63492 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_3L_012bits.v common 1.67 0.02 6616 0 0.01 -1 -1 29660 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63112 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.51 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_2L_013bits.v common 1.37 0.03 6664 0 0.00 -1 -1 29716 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63288 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.47 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml adder_tree_3L_013bits.v common 1.48 0.03 6704 0 0.00 -1 -1 29692 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63464 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_2L_014bits.v common 1.76 0.03 6720 0 0.01 -1 -1 29708 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63444 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.54 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml adder_tree_3L_014bits.v common 1.42 0.03 6720 0 0.01 -1 -1 29848 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63264 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_2L_015bits.v common 1.36 0.02 6816 0 0.00 -1 -1 29752 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63568 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_3L_015bits.v common 1.87 0.02 6800 0 0.00 -1 -1 29688 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63172 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.76 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_2L_016bits.v common 1.42 0.03 6872 0 0.00 -1 -1 29728 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63264 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.51 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_3L_016bits.v common 1.47 0.03 6908 0 0.00 -1 -1 29720 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63232 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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
+ fixed_k6_frac_N8_22nm.xml adder_tree_2L_017bits.v common 1.42 0.02 6956 0 0.00 -1 -1 29676 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63548 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.53 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_3L_017bits.v common 1.39 0.03 6936 0 0.00 -1 -1 29744 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63228 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_2L_018bits.v common 1.42 0.02 6964 0 0.01 -1 -1 29684 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63388 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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
+ fixed_k6_frac_N8_22nm.xml adder_tree_3L_018bits.v common 1.33 0.02 6976 0 0.00 -1 -1 29740 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63172 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_2L_019bits.v common 1.37 0.04 7016 0 0.00 -1 -1 29836 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63268 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_3L_019bits.v common 1.36 0.03 7032 0 0.01 -1 -1 29688 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63136 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_2L_020bits.v common 1.38 0.03 7076 0 0.00 -1 -1 29744 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63452 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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
+ fixed_k6_frac_N8_22nm.xml adder_tree_3L_020bits.v common 1.32 0.02 7044 0 0.00 -1 -1 29740 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62952 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_2L_021bits.v common 1.41 0.03 7148 0 0.00 -1 -1 29756 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63612 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_3L_021bits.v common 1.41 0.03 7072 0 0.00 -1 -1 29704 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63604 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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
+ fixed_k6_frac_N8_22nm.xml adder_tree_2L_022bits.v common 1.41 0.02 7120 0 0.01 -1 -1 29712 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63508 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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
+ fixed_k6_frac_N8_22nm.xml adder_tree_3L_022bits.v common 1.36 0.03 7168 0 0.00 -1 -1 29744 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63172 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_2L_023bits.v common 1.38 0.04 7252 0 0.01 -1 -1 29708 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63220 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_3L_023bits.v common 1.37 0.04 7248 0 0.00 -1 -1 29716 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63632 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_2L_024bits.v common 1.39 0.03 7272 0 0.00 -1 -1 29780 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63592 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_3L_024bits.v common 1.48 0.03 7268 0 0.00 -1 -1 29784 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63832 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_2L_028bits.v common 1.46 0.04 7540 0 0.00 -1 -1 29684 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63772 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_3L_028bits.v common 1.50 0.04 7520 0 0.01 -1 -1 29660 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63528 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_2L_032bits.v common 1.42 0.04 7792 0 0.00 -1 -1 29736 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63368 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_3L_032bits.v common 1.42 0.04 7716 0 0.01 -1 -1 29692 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63620 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_2L_048bits.v common 1.53 0.05 8516 0 0.00 -1 -1 29776 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63752 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.52 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_3L_048bits.v common 1.43 0.05 8608 0 0.01 -1 -1 29852 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63700 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_2L_064bits.v common 1.48 0.07 9384 0 0.01 -1 -1 29808 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63760 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.51 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_3L_064bits.v common 1.46 0.08 9404 0 0.01 -1 -1 29884 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63468 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_2L_096bits.v common 1.72 0.11 10968 0 0.01 -1 -1 29980 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63332 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.54 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml adder_tree_3L_096bits.v common 1.52 0.11 10996 0 0.01 -1 -1 30088 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63152 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.52 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_2L_128bits.v common 1.45 0.11 12824 0 0.00 -1 -1 30312 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63656 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_N8_22nm.xml adder_tree_3L_128bits.v common 1.51 0.11 12788 0 0.01 -1 -1 30224 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64084 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.51 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -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_frac_ripple_N8_22nm.xml adder_tree_2L_004bits.v common 1.36 0.02 6268 0 0.01 -1 -1 29736 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63764 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_3L_004bits.v common 1.38 0.01 6340 0 0.00 -1 -1 29620 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63768 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_2L_005bits.v common 1.40 0.02 6232 0 0.01 -1 -1 29892 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63648 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_3L_005bits.v common 1.44 0.02 6288 0 0.00 -1 -1 29804 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63684 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_2L_006bits.v common 1.50 0.02 6428 0 0.01 -1 -1 29836 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63880 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_3L_006bits.v common 1.45 0.02 6284 0 0.01 -1 -1 29832 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63624 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_2L_007bits.v common 1.37 0.01 6472 0 0.01 -1 -1 29872 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63412 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_3L_007bits.v common 1.53 0.01 6404 0 0.00 -1 -1 29952 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63664 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.60 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_2L_008bits.v common 1.52 0.02 6512 0 0.00 -1 -1 29772 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63660 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.01 0 -1 -1 -1 -1 -1 -1 0.51 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_3L_008bits.v common 1.43 0.02 6424 0 0.00 -1 -1 29700 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63856 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.51 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_2L_009bits.v common 1.71 0.02 6560 0 0.00 -1 -1 29728 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63672 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.60 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_3L_009bits.v common 1.41 0.02 6496 0 0.00 -1 -1 29736 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63540 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.02 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_2L_010bits.v common 1.47 0.03 6560 0 0.00 -1 -1 29768 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63768 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_3L_010bits.v common 1.43 0.03 6528 0 0.01 -1 -1 29712 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63424 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.54 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_2L_011bits.v common 1.37 0.02 6576 0 0.00 -1 -1 29712 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63900 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_3L_011bits.v common 1.46 0.03 6596 0 0.00 -1 -1 29740 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63704 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_2L_012bits.v common 1.36 0.03 6632 0 0.02 -1 -1 29748 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63648 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_3L_012bits.v common 1.42 0.03 6660 0 0.00 -1 -1 29792 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63904 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_2L_013bits.v common 1.54 0.02 6748 0 0.01 -1 -1 29664 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63720 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_3L_013bits.v common 1.43 0.02 6592 0 0.00 -1 -1 29676 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63720 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.51 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_2L_014bits.v common 1.38 0.03 6724 0 0.01 -1 -1 29732 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63896 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_3L_014bits.v common 1.41 0.03 6736 0 0.00 -1 -1 29784 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63732 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_2L_015bits.v common 1.35 0.03 6768 0 0.00 -1 -1 29656 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63456 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_3L_015bits.v common 1.38 0.02 6780 0 0.01 -1 -1 29776 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63740 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_2L_016bits.v common 1.60 0.03 6840 0 0.01 -1 -1 29688 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64116 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.59 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_3L_016bits.v common 1.44 0.03 6836 0 0.01 -1 -1 29748 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63988 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_2L_017bits.v common 1.52 0.03 6844 0 0.01 -1 -1 29896 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63868 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_3L_017bits.v common 1.36 0.03 6864 0 0.00 -1 -1 29732 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63448 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_2L_018bits.v common 1.52 0.03 6920 0 0.01 -1 -1 29868 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63764 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.63 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_3L_018bits.v common 1.36 0.03 6852 0 0.00 -1 -1 29832 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63504 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_2L_019bits.v common 1.50 0.03 6948 0 0.00 -1 -1 29780 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64036 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.51 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_3L_019bits.v common 1.74 0.03 7024 0 0.00 -1 -1 29728 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64124 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.01 0 -1 -1 -1 -1 -1 -1 0.64 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_2L_020bits.v common 1.40 0.04 7040 0 0.00 -1 -1 29740 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63528 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_3L_020bits.v common 1.54 0.03 7020 0 0.01 -1 -1 29740 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63680 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.57 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_2L_021bits.v common 1.43 0.02 7000 0 0.00 -1 -1 29704 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63760 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_3L_021bits.v common 1.60 0.03 6972 0 0.01 -1 -1 29740 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63948 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.60 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_2L_022bits.v common 1.55 0.04 7076 0 0.01 -1 -1 29784 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63824 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_3L_022bits.v common 1.51 0.03 7084 0 0.00 -1 -1 29688 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64016 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_2L_023bits.v common 1.40 0.04 7208 0 0.01 -1 -1 29780 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63628 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_3L_023bits.v common 1.41 0.03 7128 0 0.00 -1 -1 29768 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64012 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.51 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_2L_024bits.v common 1.37 0.04 7212 0 0.00 -1 -1 29724 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64024 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_3L_024bits.v common 1.38 0.04 7160 0 0.00 -1 -1 29756 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63944 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_2L_028bits.v common 1.38 0.04 7324 0 0.00 -1 -1 29752 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63680 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_3L_028bits.v common 1.51 0.04 7380 0 0.00 -1 -1 29780 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64040 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.52 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_2L_032bits.v common 1.44 0.04 7480 0 0.01 -1 -1 29716 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63984 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_3L_032bits.v common 1.36 0.04 7556 0 0.01 -1 -1 29756 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63604 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_2L_048bits.v common 1.40 0.06 8288 0 0.01 -1 -1 29772 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64024 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_3L_048bits.v common 1.52 0.06 8276 0 0.01 -1 -1 29720 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63880 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_2L_064bits.v common 1.46 0.07 9012 0 0.01 -1 -1 30012 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64324 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_3L_064bits.v common 1.45 0.08 9024 0 0.01 -1 -1 30040 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64188 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_2L_096bits.v common 1.50 0.12 10472 0 0.01 -1 -1 29956 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64244 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_3L_096bits.v common 1.67 0.09 10412 0 0.01 -1 -1 30008 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63956 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.59 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_2L_128bits.v common 1.58 0.15 12004 0 0.01 -1 -1 30332 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64244 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_tree_3L_128bits.v common 1.74 0.13 12032 0 0.02 -1 -1 30300 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64488 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_2L_004bits.v common 1.35 0.02 6192 0 0.00 -1 -1 29700 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62744 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_3L_004bits.v common 1.35 0.02 6268 0 0.01 -1 -1 29740 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63328 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_2L_005bits.v common 1.42 0.02 6264 0 0.01 -1 -1 29772 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63088 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_3L_005bits.v common 1.39 0.02 6236 0 0.01 -1 -1 29784 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63580 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.53 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_2L_006bits.v common 1.55 0.02 6348 0 0.01 -1 -1 29924 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62920 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.63 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_3L_006bits.v common 1.48 0.02 6360 0 0.00 -1 -1 29804 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63160 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.52 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_2L_007bits.v common 1.45 0.02 6444 0 0.00 -1 -1 29880 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63140 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_3L_007bits.v common 1.36 0.02 6468 0 0.00 -1 -1 29848 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63084 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_2L_008bits.v common 1.37 0.03 6476 0 0.00 -1 -1 29740 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63568 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_3L_008bits.v common 1.40 0.02 6444 0 0.01 -1 -1 29712 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63384 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_2L_009bits.v common 1.39 0.02 6472 0 0.00 -1 -1 29656 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63664 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.54 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_3L_009bits.v common 1.42 0.02 6480 0 0.00 -1 -1 29672 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63768 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.54 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_2L_010bits.v common 1.40 0.05 6608 0 0.00 -1 -1 29788 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63048 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_3L_010bits.v common 1.48 0.02 6564 0 0.00 -1 -1 29768 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62956 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.53 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_2L_011bits.v common 1.54 0.02 6588 0 0.01 -1 -1 29836 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62868 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.59 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_3L_011bits.v common 1.48 0.02 6580 0 0.00 -1 -1 29804 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62940 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.58 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_2L_012bits.v common 1.41 0.03 6628 0 0.00 -1 -1 29712 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63544 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.55 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_3L_012bits.v common 1.48 0.02 6604 0 0.00 -1 -1 29612 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63284 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_2L_013bits.v common 1.40 0.03 6652 0 0.00 -1 -1 29688 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62912 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.51 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_3L_013bits.v common 1.43 0.02 6748 0 0.00 -1 -1 29792 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62968 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_2L_014bits.v common 1.42 0.02 6808 0 0.01 -1 -1 29780 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63376 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_3L_014bits.v common 1.40 0.03 6728 0 0.00 -1 -1 29788 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63280 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_2L_015bits.v common 1.40 0.03 6764 0 0.00 -1 -1 29708 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63796 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.52 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_3L_015bits.v common 1.37 0.04 6852 0 0.02 -1 -1 29756 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63672 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_2L_016bits.v common 1.98 0.03 6824 0 0.00 -1 -1 29788 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63132 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.76 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_3L_016bits.v common 1.73 0.02 6836 0 0.02 -1 -1 29816 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63176 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.55 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_2L_017bits.v common 2.06 0.03 6820 0 0.01 -1 -1 29768 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63076 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.83 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_3L_017bits.v common 1.47 0.03 6872 0 0.00 -1 -1 29760 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63516 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.57 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_2L_018bits.v common 1.47 0.03 6884 0 0.00 -1 -1 29708 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63544 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.55 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_3L_018bits.v common 1.45 0.04 6900 0 0.00 -1 -1 29728 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63156 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.55 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_2L_019bits.v common 1.43 0.06 6968 0 0.00 -1 -1 29744 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63712 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_3L_019bits.v common 1.37 0.03 6876 0 0.01 -1 -1 29764 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63652 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_2L_020bits.v common 1.38 0.04 6988 0 0.00 -1 -1 29808 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62740 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_3L_020bits.v common 1.37 0.03 7008 0 0.00 -1 -1 29768 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63624 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_2L_021bits.v common 1.47 0.03 7028 0 0.01 -1 -1 29704 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63936 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_3L_021bits.v common 1.36 0.04 7084 0 0.00 -1 -1 29700 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63640 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_2L_022bits.v common 1.58 0.03 7084 0 0.01 -1 -1 29728 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63756 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.65 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_3L_022bits.v common 1.56 0.03 7096 0 0.01 -1 -1 29684 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62984 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.62 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_2L_023bits.v common 1.56 0.04 7064 0 0.00 -1 -1 29744 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63748 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.57 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_3L_023bits.v common 1.40 0.03 7116 0 0.01 -1 -1 29792 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63968 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_2L_024bits.v common 1.36 0.04 7252 0 0.01 -1 -1 29700 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63508 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_3L_024bits.v common 1.44 0.04 7196 0 0.01 -1 -1 29820 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63492 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_2L_028bits.v common 1.64 0.04 7396 0 0.01 -1 -1 29768 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63788 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_3L_028bits.v common 1.39 0.04 7456 0 0.00 -1 -1 29708 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63608 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_2L_032bits.v common 1.57 0.04 7548 0 0.01 -1 -1 29756 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63828 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.54 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_3L_032bits.v common 1.37 0.04 7528 0 0.01 -1 -1 29748 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63836 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_2L_048bits.v common 1.42 0.05 8308 0 0.01 -1 -1 29812 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63536 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_3L_048bits.v common 1.52 0.06 8340 0 0.01 -1 -1 29832 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63772 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.51 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_2L_064bits.v common 1.47 0.07 9028 0 0.01 -1 -1 30012 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64224 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.49 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_3L_064bits.v common 1.40 0.05 9100 0 0.01 -1 -1 29976 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64136 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_2L_096bits.v common 1.52 0.08 10492 0 0.02 -1 -1 30004 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63260 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.55 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_3L_096bits.v common 1.43 0.08 10488 0 0.01 -1 -1 30000 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63320 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_2L_128bits.v common 1.55 0.15 11956 0 0.01 -1 -1 30304 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64436 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.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 0 0 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_tree_3L_128bits.v common 1.59 0.11 12032 0 0.01 -1 -1 30336 -1 -1 0 0 0 0 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63812 -1 -1 0 0 0 0 0 17 17 289 -1 unnamed_device 0.00 0 -1 -1 -1 -1 -1 -1 0.55 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0
diff --git a/vtr_flow/tasks/arithmetic_tasks/figure_8/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/config.txt
similarity index 98%
rename from vtr_flow/tasks/arithmetic_tasks/figure_8/config/config.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/config.txt
index 62de70655e1..408375e3469 100644
--- a/vtr_flow/tasks/arithmetic_tasks/figure_8/config/config.txt
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/config.txt
@@ -122,6 +122,9 @@ arch_list_add=fixed_k6_frac_uripple_N8_22nm.xml
# Parse info and how to parse
parse_file=vpr_chain.txt
+# How to parse QoR info
+qor_parse_file=qor_standard.txt
+
# Pass requirements
pass_requirements_file=pass_requirements_chain.txt
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
new file mode 100644
index 00000000000..65955822dd0
--- /dev/null
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/golden_results.txt
@@ -0,0 +1,221 @@
+ 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
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_003bits.v common 1.95 0.02 5848 1 0.03 -1 -1 31960 -1 -1 2 7 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63288 7 4 21 25 1 15 13 17 17 289 -1 unnamed_device 0.00 33 0.01 0.00 0.581048 -5.30553 -0.581048 0.581048 0.54 3.8706e-05 2.9422e-05 0.00294476 0.00216761 24 115 8 6.55708e+06 24110 448715. 1552.65 0.32 0.00727347 0.00535274 94 10 72 72 2697 1018 0.821448 0.821448 -6.74793 -0.821448 0 0 554710. 1919.41 0.14 0.01 0.00161553 0.00125783 10 4 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_004bits.v common 1.97 0.02 5860 2 0.01 -1 -1 31896 -1 -1 2 9 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63420 9 5 28 33 1 21 16 17 17 289 -1 unnamed_device 0.00 47 0.01 0.00 0.819447 -7.38981 -0.819447 0.819447 0.49 5.1123e-05 4.0035e-05 0.00456397 0.00347606 26 140 10 6.55708e+06 24110 477104. 1650.88 0.34 0.010026 0.00763534 146 7 72 77 4128 1362 0.819447 0.819447 -10.1152 -0.819447 0 0 585099. 2024.56 0.14 0.00 0.00140185 0.00111191 13 6 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_005bits.v common 2.27 0.01 5856 2 0.02 -1 -1 31704 -1 -1 2 11 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63436 11 6 34 40 1 24 19 17 17 289 -1 unnamed_device 0.01 61 0.01 0.00 0.819447 -9.26524 -0.819447 0.819447 0.57 5.5225e-05 4.232e-05 0.00580249 0.00442758 26 214 27 6.55708e+06 24110 477104. 1650.88 0.41 0.0158588 0.0119746 191 14 113 121 5604 2033 0.902448 0.902448 -13.1534 -0.902448 0 0 585099. 2024.56 0.16 0.01 0.00184443 0.00146097 16 7 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_006bits.v common 1.89 0.01 5884 3 0.03 -1 -1 32024 -1 -1 3 13 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63516 13 7 41 48 1 32 23 17 17 289 -1 unnamed_device 0.01 75 0.01 0.00 1.50711 -12.9658 -1.50711 1.50711 0.47 6.3672e-05 4.9388e-05 0.00582304 0.00448751 26 292 17 6.55708e+06 36165 477104. 1650.88 0.34 0.013503 0.010506 250 10 105 118 5277 1858 1.50711 1.50711 -17.4132 -1.50711 0 0 585099. 2024.56 0.13 0.01 0.00178091 0.0014727 19 9 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_007bits.v common 1.93 0.01 5884 3 0.03 -1 -1 31728 -1 -1 3 15 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63456 15 8 47 55 1 38 26 17 17 289 -1 unnamed_device 0.01 107 0.02 0.00 1.05785 -14.7122 -1.05785 1.05785 0.47 7.3037e-05 5.6856e-05 0.00944114 0.00741292 26 340 13 6.55708e+06 36165 477104. 1650.88 0.35 0.0179303 0.0140886 294 10 157 177 8454 2781 1.05785 1.05785 -19.0394 -1.05785 0 0 585099. 2024.56 0.13 0.01 0.00193967 0.00160521 23 10 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_008bits.v common 2.04 0.01 5904 3 0.02 -1 -1 31776 -1 -1 4 17 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63532 17 9 56 65 1 42 30 17 17 289 -1 unnamed_device 0.04 102 0.02 0.00 1.46791 -16.6632 -1.46791 1.46791 0.47 7.7687e-05 6.1471e-05 0.010075 0.00791271 26 449 45 6.55708e+06 48220 477104. 1650.88 0.41 0.0240193 0.0189703 294 17 209 236 9519 3504 1.82851 1.82851 -22.553 -1.82851 0 0 585099. 2024.56 0.13 0.01 0.00313706 0.00259394 25 14 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_009bits.v common 1.99 0.01 5832 4 0.02 -1 -1 31688 -1 -1 4 19 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63272 19 10 60 70 1 48 33 17 17 289 -1 unnamed_device 0.01 130 0.02 0.00 1.50711 -20.4252 -1.50711 1.50711 0.47 8.7764e-05 7.0472e-05 0.00959237 0.00764907 26 450 18 6.55708e+06 48220 477104. 1650.88 0.40 0.020336 0.0162753 420 14 257 308 16735 5350 1.58811 1.58811 -27.6032 -1.58811 0 0 585099. 2024.56 0.13 0.01 0.00281432 0.0023383 29 13 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_010bits.v common 2.05 0.01 5868 4 0.02 -1 -1 32224 -1 -1 5 21 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63908 21 11 69 80 1 53 37 17 17 289 -1 unnamed_device 0.02 166 0.02 0.00 1.46791 -23.1376 -1.46791 1.46791 0.47 9.4468e-05 7.6515e-05 0.0101668 0.00788057 26 541 15 6.55708e+06 60275 477104. 1650.88 0.38 0.0213402 0.0169272 477 15 245 337 24004 7553 1.80097 1.80097 -30.2706 -1.80097 0 0 585099. 2024.56 0.15 0.01 0.00335126 0.00281936 33 17 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_011bits.v common 1.99 0.02 5900 5 0.02 -1 -1 32172 -1 -1 5 23 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63968 23 12 73 85 1 58 40 17 17 289 -1 unnamed_device 0.01 267 0.02 0.00 1.95636 -29.9922 -1.95636 1.95636 0.47 9.6366e-05 7.7963e-05 0.00962917 0.00768905 26 665 33 6.55708e+06 60275 477104. 1650.88 0.39 0.0240146 0.0192919 608 14 248 339 18378 5001 2.15756 2.15756 -36.8534 -2.15756 0 0 585099. 2024.56 0.13 0.01 0.00333054 0.00282291 35 16 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_012bits.v common 2.02 0.01 5920 5 0.03 -1 -1 32224 -1 -1 6 25 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63912 25 13 82 95 1 66 44 17 17 289 -1 unnamed_device 0.02 276 0.02 0.00 1.7847 -30.9303 -1.7847 1.7847 0.49 0.000117992 9.6898e-05 0.00961572 0.00772843 26 682 10 6.55708e+06 72330 477104. 1650.88 0.39 0.0217871 0.0176982 631 11 240 336 19200 5298 1.9049 1.9049 -38.8243 -1.9049 0 0 585099. 2024.56 0.13 0.01 0.00320303 0.00272718 40 20 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_013bits.v common 2.20 0.02 5932 5 0.05 -1 -1 32012 -1 -1 7 27 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63984 27 14 91 105 1 70 48 17 17 289 -1 unnamed_device 0.02 264 0.04 0.00 1.73384 -33.1569 -1.73384 1.73384 0.47 0.000115042 9.3459e-05 0.0152674 0.0123747 26 814 15 6.55708e+06 84385 477104. 1650.88 0.38 0.0295979 0.024236 714 15 327 518 39676 10307 1.97825 1.97825 -42.1175 -1.97825 0 0 585099. 2024.56 0.13 0.01 0.00426549 0.00363267 42 24 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_014bits.v common 2.07 0.01 5860 6 0.05 -1 -1 31772 -1 -1 7 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64040 29 15 95 110 1 74 51 17 17 289 -1 unnamed_device 0.05 252 0.04 0.00 2.23396 -37.6407 -2.23396 2.23396 0.47 0.000119101 9.6736e-05 0.0144524 0.0116896 28 680 12 6.55708e+06 84385 500653. 1732.36 0.39 0.0288784 0.0238034 596 12 279 404 18634 5772 2.27576 2.27576 -45.6679 -2.27576 0 0 612192. 2118.31 0.13 0.01 0.00413012 0.00358671 45 23 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_015bits.v common 2.20 0.01 5876 6 0.03 -1 -1 31700 -1 -1 9 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64076 31 16 104 120 1 80 56 17 17 289 -1 unnamed_device 0.14 274 0.04 0.00 1.95636 -37.2994 -1.95636 1.95636 0.47 0.000126918 0.000103458 0.0164432 0.0133673 30 817 20 6.55708e+06 108495 526063. 1820.29 0.45 0.0330297 0.0271781 580 13 307 464 23691 6939 2.19676 2.19676 -42.7522 -2.19676 0 0 666494. 2306.21 0.15 0.01 0.00426751 0.0036793 50 27 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_016bits.v common 2.07 0.02 5916 7 0.04 -1 -1 31728 -1 -1 7 33 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64184 33 17 108 125 1 86 57 17 17 289 -1 unnamed_device 0.02 431 0.04 0.00 2.64402 -50.2146 -2.64402 2.64402 0.46 0.000130299 0.000106707 0.0172852 0.0140316 30 996 25 6.55708e+06 84385 526063. 1820.29 0.42 0.0349767 0.0288438 880 14 349 509 32781 8064 2.64402 2.64402 -57.0288 -2.64402 0 0 666494. 2306.21 0.15 0.01 0.00458171 0.00395474 51 26 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_018bits.v common 2.47 0.03 6068 7 0.04 -1 -1 31704 -1 -1 8 37 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64324 37 19 127 146 1 101 64 17 17 289 -1 unnamed_device 0.23 642 0.04 0.00 2.61648 -62.625 -2.61648 2.61648 0.47 0.00015059 0.000124989 0.0151511 0.0124392 26 1418 33 6.55708e+06 96440 477104. 1650.88 0.53 0.0382199 0.0317511 1242 13 425 610 57003 13385 2.64602 2.64602 -71.6634 -2.64602 0 0 585099. 2024.56 0.15 0.02 0.00642787 0.00563888 59 35 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_020bits.v common 2.15 0.01 6092 8 0.05 -1 -1 31740 -1 -1 10 41 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64116 41 21 139 160 1 109 72 17 17 289 -1 unnamed_device 0.13 394 0.05 0.00 3.04382 -64.6184 -3.04382 3.04382 0.46 0.000162741 0.000134726 0.0198265 0.0163245 28 1077 13 6.55708e+06 120550 500653. 1732.36 0.39 0.0388116 0.0325314 875 11 381 505 27220 7946 3.16402 3.16402 -74.595 -3.16402 0 0 612192. 2118.31 0.13 0.01 0.00492088 0.0043394 67 37 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_022bits.v common 2.32 0.02 6036 9 0.04 -1 -1 31948 -1 -1 11 45 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64744 45 23 152 175 1 124 79 17 17 289 -1 unnamed_device 0.04 648 0.06 0.00 2.7775 -71.9033 -2.7775 2.7775 0.47 0.000172928 0.000144046 0.0223926 0.0185165 28 1471 21 6.55708e+06 132605 500653. 1732.36 0.48 0.0450264 0.0377496 1299 15 536 740 49945 12340 3.0179 3.0179 -85.5042 -3.0179 0 0 612192. 2118.31 0.16 0.02 0.00764325 0.00666416 74 40 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_024bits.v common 2.35 0.01 6064 10 0.03 -1 -1 32448 -1 -1 11 49 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64356 49 25 165 190 1 131 85 17 17 289 -1 unnamed_device 0.21 697 0.06 0.00 3.31942 -81.5686 -3.31942 3.31942 0.50 0.000188238 0.00015758 0.0241338 0.0201885 26 1573 17 6.55708e+06 132605 477104. 1650.88 0.41 0.0485402 0.04108 1428 12 579 807 46988 12302 3.31942 3.31942 -96.5664 -3.31942 0 0 585099. 2024.56 0.13 0.02 0.0064429 0.00570226 79 43 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_028bits.v common 3.69 0.02 6092 11 0.05 -1 -1 31920 -1 -1 14 57 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65224 57 29 199 228 1 157 100 17 17 289 -1 unnamed_device 0.18 743 0.08 0.00 4.09974 -108.242 -4.09974 4.09974 0.46 0.000216269 0.000181125 0.0297964 0.0245991 34 1756 32 6.55708e+06 168770 585099. 2024.56 1.65 0.0965859 0.0814285 1470 68 798 1240 394718 290799 4.24948 4.24948 -122.386 -4.24948 0 0 742403. 2568.87 0.16 0.12 0.0268487 0.0232704 93 57 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_032bits.v common 2.61 0.01 6184 13 0.04 -1 -1 31840 -1 -1 15 65 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64196 65 33 224 257 1 179 113 17 17 289 -1 unnamed_device 0.36 858 0.09 0.00 4.15482 -126.808 -4.15482 4.15482 0.46 0.000269789 0.000230721 0.0337127 0.0283019 32 2011 19 6.55708e+06 180825 554710. 1919.41 0.50 0.065978 0.0563266 1702 14 662 861 68832 17168 4.39522 4.39522 -148.685 -4.39522 0 0 701300. 2426.64 0.16 0.02 0.00870633 0.00774428 107 62 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_048bits.v common 3.16 0.01 6368 19 0.10 -1 -1 32224 -1 -1 24 97 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65704 97 49 340 389 1 265 170 17 17 289 -1 unnamed_device 0.24 1392 0.15 0.00 6.37979 -246.747 -6.37979 6.37979 0.49 0.000351522 0.000303167 0.0493994 0.0420949 34 2935 28 6.55708e+06 289320 585099. 2024.56 0.90 0.138285 0.119435 2646 12 920 1341 89503 22426 6.37979 6.37979 -269.465 -6.37979 0 0 742403. 2568.87 0.16 0.03 0.0122792 0.0111052 160 98 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_064bits.v common 4.56 0.02 6528 26 0.07 -1 -1 32328 -1 -1 31 129 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66280 129 65 454 519 1 354 225 17 17 289 -1 unnamed_device 0.16 1795 0.21 0.00 8.17384 -378.67 -8.17384 8.17384 0.48 0.000476021 0.000413955 0.067589 0.0580857 36 3878 47 6.55708e+06 373705 612192. 2118.31 2.09 0.253096 0.222386 3366 61 1459 2122 536730 318887 8.53444 8.53444 -426.872 -8.53444 0 0 782063. 2706.10 0.17 0.19 0.0581629 0.0521495 213 132 -1 -1 -1 -1
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 0.33 0.02 6120 1 0.01 -1 -1 29808 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 21212 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 2 2 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 0.31 0.01 6264 1 0.01 -1 -1 29696 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 21100 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 2 2 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 0.34 0.02 6172 1 0.01 -1 -1 29820 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 20928 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 2 2 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 0.31 0.01 6164 1 0.01 -1 -1 29772 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 21288 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 2 2 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 0.35 0.04 6264 1 0.00 -1 -1 29832 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 21248 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 3 3 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 0.34 0.01 6232 1 0.01 -1 -1 29816 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 21164 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 3 3 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 0.32 0.02 6272 1 0.01 -1 -1 29716 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 21300 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 3 3 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 0.36 0.02 6196 1 0.01 -1 -1 29780 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 21104 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 3 3 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 0.34 0.01 6188 1 0.01 -1 -1 29864 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 21188 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 4 4 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 0.30 0.01 6152 1 0.00 -1 -1 29868 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 21100 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 4 4 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 0.34 0.01 6428 1 0.01 -1 -1 29880 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 21440 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 4 4 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 0.32 0.01 6168 1 0.01 -1 -1 29860 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 21416 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 4 4 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 0.32 0.01 6184 1 0.01 -1 -1 29860 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 21508 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 5 5 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 0.33 0.02 6140 1 0.00 -1 -1 29880 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 21488 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 5 5 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 0.32 0.01 6472 1 0.01 -1 -1 29776 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 21788 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 5 5 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 0.30 0.01 6224 1 0.00 -1 -1 29880 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 21268 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 6 6 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 0.35 0.01 6196 1 0.01 -1 -1 29896 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 21256 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 6 6 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 0.35 0.01 6540 1 0.01 -1 -1 29836 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 21612 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 7 7 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 0.35 0.01 6396 1 0.01 -1 -1 29856 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 21740 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 8 8 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 0.35 0.02 6324 1 0.01 -1 -1 29860 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 21668 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 9 9 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 0.38 0.02 6728 1 0.01 -1 -1 30088 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 22144 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 13 13 0 0
+ fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 0.40 0.02 6788 1 0.02 -1 -1 30208 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 22392 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 17 17 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 0.33 0.01 6076 1 0.01 -1 -1 29820 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 20704 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 2 2 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 0.35 0.01 6112 1 0.01 -1 -1 29852 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 20680 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 2 2 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 0.33 0.01 6080 1 0.00 -1 -1 29704 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 20744 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 2 2 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 0.34 0.01 6120 1 0.01 -1 -1 29804 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 21000 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 2 2 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 0.32 0.01 6156 1 0.01 -1 -1 29784 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 20676 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 3 3 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 0.34 0.03 6160 1 0.00 -1 -1 29772 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 21080 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 3 3 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 0.33 0.02 6176 1 0.00 -1 -1 29760 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 21020 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 3 3 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 0.32 0.02 6136 1 0.01 -1 -1 29864 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 21196 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 3 3 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 0.32 0.02 6412 1 0.00 -1 -1 29732 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 20968 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 4 4 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 0.32 0.02 6276 1 0.01 -1 -1 29632 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 21228 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 4 4 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 0.32 0.02 6432 1 0.02 -1 -1 29820 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 21048 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 4 4 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 0.32 0.01 6120 1 0.00 -1 -1 29896 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 21036 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 4 4 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 0.32 0.01 6292 1 0.01 -1 -1 29744 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 21452 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 5 5 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 0.32 0.01 6252 1 0.00 -1 -1 29880 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 21228 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 5 5 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 0.33 0.01 6268 1 0.01 -1 -1 29804 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 21224 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 5 5 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 0.32 0.01 6292 1 0.01 -1 -1 29832 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 21016 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 6 6 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 0.31 0.01 6404 1 0.01 -1 -1 29864 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 21112 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 6 6 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 0.32 0.01 6232 1 0.01 -1 -1 29760 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 21356 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 7 7 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 0.37 0.01 6452 1 0.01 -1 -1 29912 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 21688 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 8 8 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 0.34 0.02 6500 1 0.01 -1 -1 29936 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 21324 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 9 9 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 0.33 0.02 6612 1 0.01 -1 -1 30140 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 22048 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 13 13 0 0
+ fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 0.37 0.02 6756 1 0.01 -1 -1 30204 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 22104 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 17 17 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 1.94 0.01 6208 1 0.00 -1 -1 29768 -1 -1 2 7 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63400 7 4 27 28 1 14 13 17 17 289 -1 unnamed_device 0.01 26 0.01 0.00 0.649848 -5.45453 -0.649848 0.649848 0.50 4.4007e-05 3.4572e-05 0.00373631 0.00267679 20 79 11 6.64007e+06 25116 394039. 1363.46 0.32 0.00534037 0.00395545 82 5 22 22 1245 462 0.83871 0.83871 -6.89693 -0.83871 0 0 477104. 1650.88 0.13 0.00 0.000808519 0.000655982 10 -1 5 5 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 1.84 0.02 6340 1 0.01 -1 -1 29688 -1 -1 2 9 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63644 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 0.01 41 0.01 0.00 0.671848 -7.32322 -0.671848 0.671848 0.53 5.4759e-05 4.264e-05 0.0050636 0.00394523 20 143 24 6.64007e+06 25116 394039. 1363.46 0.27 0.00795349 0.00617521 117 9 64 64 2715 1026 0.901248 0.901248 -9.46182 -0.901248 0 0 477104. 1650.88 0.11 0.00 0.0013076 0.00105198 13 -1 6 6 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 1.99 0.01 6136 1 0.01 -1 -1 29740 -1 -1 2 11 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63976 11 6 41 42 1 26 19 17 17 289 -1 unnamed_device 0.01 58 0.02 0.00 0.682848 -8.98105 -0.682848 0.682848 0.50 0.000108095 8.698e-05 0.00906689 0.00705146 28 198 23 6.64007e+06 25116 500653. 1732.36 0.40 0.0182899 0.0142912 164 23 217 217 10057 3521 1.04345 1.04345 -12.587 -1.04345 0 0 612192. 2118.31 0.14 0.01 0.00282217 0.0022081 16 -1 7 7 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 2.22 0.03 6036 1 0.00 -1 -1 29656 -1 -1 3 13 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63312 13 7 48 49 1 32 23 17 17 289 -1 unnamed_device 0.01 73 0.02 0.00 0.704848 -11.1591 -0.704848 0.704848 0.57 6.7076e-05 5.3292e-05 0.00742505 0.00577723 26 239 20 6.64007e+06 37674 477104. 1650.88 0.42 0.0171714 0.0133441 195 21 223 223 10203 3609 1.03245 1.03245 -14.9877 -1.03245 0 0 585099. 2024.56 0.13 0.01 0.00309959 0.00247438 19 -1 8 8 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 2.09 0.02 6232 1 0.00 -1 -1 29676 -1 -1 3 15 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63928 15 8 55 56 1 38 26 17 17 289 -1 unnamed_device 0.01 115 0.02 0.00 0.944958 -13.6801 -0.944958 0.944958 0.49 7.3853e-05 5.815e-05 0.00848792 0.00667971 30 274 13 6.64007e+06 37674 526063. 1820.29 0.40 0.017088 0.0134237 218 12 116 116 5587 1790 0.932248 0.932248 -16.909 -0.932248 0 0 666494. 2306.21 0.16 0.01 0.00343292 0.00281722 22 -1 9 9 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 2.16 0.01 6092 1 0.01 -1 -1 29740 -1 -1 4 17 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63604 17 9 62 63 1 41 30 17 17 289 -1 unnamed_device 0.02 118 0.03 0.00 0.955958 -15.7312 -0.955958 0.955958 0.53 9.1739e-05 7.4901e-05 0.0117354 0.00938059 32 324 15 6.64007e+06 50232 554710. 1919.41 0.41 0.021389 0.0170478 266 16 210 210 12219 3526 0.856048 0.856048 -19.44 -0.856048 0 0 701300. 2426.64 0.16 0.01 0.00281058 0.00228775 25 -1 10 10 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 2.02 0.01 6044 1 0.01 -1 -1 29884 -1 -1 4 19 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63944 19 10 69 70 1 44 33 17 17 289 -1 unnamed_device 0.02 119 0.02 0.00 0.966958 -17.553 -0.966958 0.966958 0.47 8.624e-05 6.9978e-05 0.00723105 0.00584133 32 345 15 6.64007e+06 50232 554710. 1919.41 0.40 0.0176397 0.0142452 302 14 185 185 10586 3180 0.998248 0.998248 -23.6568 -0.998248 0 0 701300. 2426.64 0.15 0.01 0.00291319 0.00241299 28 -1 11 11 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 2.02 0.01 6112 1 0.00 -1 -1 29644 -1 -1 5 21 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64424 21 11 76 77 1 49 37 17 17 289 -1 unnamed_device 0.02 146 0.03 0.00 0.977958 -19.7463 -0.977958 0.977958 0.48 9.3442e-05 7.5221e-05 0.0122757 0.00986757 32 376 14 6.64007e+06 62790 554710. 1919.41 0.41 0.0229658 0.0185057 336 10 164 164 8244 2497 1.07445 1.07445 -25.6797 -1.07445 0 0 701300. 2426.64 0.15 0.01 0.00246732 0.00206597 31 -1 12 12 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 1.96 0.01 6224 1 0.02 -1 -1 29616 -1 -1 5 23 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64404 23 12 83 84 1 55 40 17 17 289 -1 unnamed_device 0.02 264 0.03 0.00 0.988958 -24.4748 -0.988958 0.988958 0.47 9.9524e-05 8.0542e-05 0.0114486 0.00929469 26 522 8 6.64007e+06 62790 477104. 1650.88 0.36 0.0217873 0.0176757 514 12 239 239 16450 4459 1.00925 1.00925 -31.6101 -1.00925 0 0 585099. 2024.56 0.13 0.01 0.00293043 0.00246207 34 -1 13 13 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 2.13 0.02 6072 1 0.00 -1 -1 29780 -1 -1 5 25 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64468 25 13 90 91 1 61 43 17 17 289 -1 unnamed_device 0.02 189 0.04 0.00 0.999958 -24.166 -0.999958 0.999958 0.50 0.000107339 8.6989e-05 0.0151816 0.0123142 32 549 14 6.64007e+06 62790 554710. 1919.41 0.46 0.0276712 0.02256 419 22 368 368 22119 6491 1.03245 1.03245 -29.2659 -1.03245 0 0 701300. 2426.64 0.15 0.01 0.00475391 0.00393254 37 -1 14 14 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 2.23 0.01 6136 1 0.01 -1 -1 29784 -1 -1 6 27 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64488 27 14 97 98 1 67 47 17 17 289 -1 unnamed_device 0.03 201 0.04 0.00 1.01096 -26.1519 -1.01096 1.01096 0.65 0.000113152 9.1606e-05 0.0153636 0.0125768 28 685 25 6.64007e+06 75348 500653. 1732.36 0.41 0.0306077 0.0250507 565 22 448 448 34970 10706 1.17465 1.17465 -35.7769 -1.17465 0 0 612192. 2118.31 0.13 0.02 0.00520512 0.00434877 40 -1 15 15 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 2.27 0.01 6224 1 0.02 -1 -1 29752 -1 -1 6 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64572 29 15 104 105 1 73 50 17 17 289 -1 unnamed_device 0.02 235 0.03 0.00 1.02196 -28.269 -1.02196 1.02196 0.48 0.000115564 9.4686e-05 0.0146595 0.0119975 32 640 16 6.64007e+06 75348 554710. 1919.41 0.45 0.0346993 0.0284845 517 10 303 303 16107 5109 1.07645 1.07645 -34.7382 -1.07645 0 0 701300. 2426.64 0.23 0.01 0.00460597 0.00395284 43 -1 16 16 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 2.14 0.02 6264 1 0.01 -1 -1 29716 -1 -1 7 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64512 31 16 111 112 1 79 54 17 17 289 -1 unnamed_device 0.03 289 0.04 0.00 1.26207 -31.9485 -1.26207 1.26207 0.49 0.000123104 0.000101703 0.0167885 0.0137311 30 704 18 6.64007e+06 87906 526063. 1820.29 0.42 0.0322059 0.0264963 577 17 359 359 20217 5452 1.06345 1.06345 -38.5834 -1.06345 0 0 666494. 2306.21 0.15 0.01 0.00469018 0.00395676 46 -1 17 17 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 2.13 0.01 6276 1 0.01 -1 -1 29828 -1 -1 7 33 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63888 33 17 118 119 1 82 57 17 17 289 -1 unnamed_device 0.02 411 0.04 0.00 1.27307 -36.7207 -1.27307 1.27307 0.48 0.00012841 0.000106039 0.0176467 0.0145081 26 854 16 6.64007e+06 87906 477104. 1650.88 0.43 0.0335827 0.0274054 710 13 393 393 25285 6633 1.04025 1.04025 -42.5384 -1.04025 0 0 585099. 2024.56 0.15 0.01 0.00420612 0.00359958 49 -1 18 18 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 2.13 0.02 6452 1 0.01 -1 -1 29824 -1 -1 8 37 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64656 37 19 132 133 1 90 64 17 17 289 -1 unnamed_device 0.03 553 0.05 0.00 1.29507 -44.6155 -1.29507 1.29507 0.47 0.000142345 0.000119618 0.0184126 0.015334 32 1034 14 6.64007e+06 100464 554710. 1919.41 0.43 0.0351916 0.0295121 976 12 415 415 37149 8201 1.10745 1.10745 -52.7573 -1.10745 0 0 701300. 2426.64 0.15 0.01 0.00429715 0.00368854 55 -1 20 20 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 2.36 0.01 6244 1 0.01 -1 -1 29956 -1 -1 8 41 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64748 41 21 146 147 1 102 70 17 17 289 -1 unnamed_device 0.04 445 0.05 0.00 1.31707 -44.6209 -1.31707 1.31707 0.50 0.000156738 0.000131069 0.020354 0.0169914 30 923 13 6.64007e+06 100464 526063. 1820.29 0.42 0.0384873 0.0321244 774 11 437 437 26076 6988 1.13925 1.13925 -53.3002 -1.13925 0 0 666494. 2306.21 0.22 0.01 0.0043391 0.00378229 61 -1 22 22 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 2.30 0.02 6288 1 0.01 -1 -1 29860 -1 -1 9 45 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64596 45 23 160 161 1 114 77 17 17 289 -1 unnamed_device 0.02 419 0.06 0.00 1.33907 -48.8774 -1.33907 1.33907 0.47 0.000167765 0.0001417 0.0234944 0.0195977 30 1174 50 6.64007e+06 113022 526063. 1820.29 0.56 0.0606058 0.0508515 917 17 640 640 49626 13196 1.27045 1.27045 -61.775 -1.27045 0 0 666494. 2306.21 0.15 0.02 0.00631254 0.00542219 67 -1 24 24 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 2.29 0.02 6208 1 0.01 -1 -1 29888 -1 -1 10 49 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64592 49 25 174 175 1 123 84 17 17 289 -1 unnamed_device 0.03 688 0.07 0.00 1.59018 -59.526 -1.59018 1.59018 0.50 0.000181864 0.000151837 0.0247075 0.0206797 30 1293 19 6.64007e+06 125580 526063. 1820.29 0.48 0.0482197 0.0404017 1118 17 524 524 38719 9251 1.20325 1.20325 -68.8787 -1.20325 0 0 666494. 2306.21 0.18 0.03 0.00925961 0.00799272 73 -1 26 26 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 2.23 0.01 6416 1 0.01 -1 -1 29800 -1 -1 11 57 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65428 57 29 202 203 1 143 97 17 17 289 -1 unnamed_device 0.04 855 0.08 0.00 1.63418 -72.6612 -1.63418 1.63418 0.47 0.000205825 0.000174537 0.0280912 0.0237654 28 1589 15 6.64007e+06 138138 500653. 1732.36 0.48 0.0523243 0.0443608 1433 19 695 695 48976 11707 1.23625 1.23625 -81.4884 -1.23625 0 0 612192. 2118.31 0.13 0.02 0.00818108 0.00706247 85 -1 30 30 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 2.41 0.01 6344 1 0.01 -1 -1 29868 -1 -1 13 65 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64600 65 33 230 231 1 164 111 17 17 289 -1 unnamed_device 0.06 909 0.09 0.00 1.90729 -83.6661 -1.90729 1.90729 0.47 0.00022978 0.000196054 0.0301771 0.0257056 30 1727 19 6.64007e+06 163254 526063. 1820.29 0.50 0.0595458 0.0509796 1461 13 632 632 36731 9462 1.20325 1.20325 -87.2461 -1.20325 0 0 666494. 2306.21 0.23 0.02 0.00712176 0.00625623 97 -1 34 34 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 2.52 0.01 6512 1 0.01 -1 -1 30248 -1 -1 19 97 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65448 97 49 342 343 1 246 165 17 17 289 -1 unnamed_device 0.04 1547 0.17 0.00 2.54151 -144.124 -2.54151 2.54151 0.48 0.00033189 0.00028761 0.0457497 0.0396005 30 2799 16 6.64007e+06 238602 526063. 1820.29 0.52 0.0889424 0.0772825 2467 14 979 979 65079 15730 1.51625 1.51625 -145.812 -1.51625 0 0 666494. 2306.21 0.20 0.03 0.0111354 0.00987136 145 -1 50 50 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 2.63 0.04 6800 1 0.01 -1 -1 30268 -1 -1 25 129 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66196 129 65 454 455 1 328 219 17 17 289 -1 unnamed_device 0.06 1951 0.24 0.00 3.17573 -211.846 -3.17573 3.17573 0.46 0.000443266 0.000389435 0.0617061 0.0539306 32 3956 18 6.64007e+06 313950 554710. 1919.41 0.58 0.120002 0.105639 3444 16 1425 1425 130062 30189 1.70045 1.70045 -203.251 -1.70045 0 0 701300. 2426.64 0.15 0.05 0.0166508 0.0148666 193 -1 66 66 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_003bits.v common 1.83 0.02 6212 1 0.01 -1 -1 29688 -1 -1 2 7 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63540 7 4 27 28 1 14 13 17 17 289 -1 unnamed_device 0.00 26 0.01 0.00 0.649848 -5.45453 -0.649848 0.649848 0.48 4.2689e-05 3.3428e-05 0.00348427 0.00265486 20 85 8 6.65987e+06 25356 394039. 1363.46 0.28 0.00475571 0.00367023 73 6 37 37 1486 612 0.770048 0.770048 -6.77673 -0.770048 0 0 477104. 1650.88 0.12 0.00 0.000872498 0.000703507 10 -1 5 5 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 1.94 0.01 6136 1 0.01 -1 -1 29756 -1 -1 2 9 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63676 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 0.01 46 0.01 0.00 0.671848 -7.32322 -0.671848 0.671848 0.49 5.5924e-05 4.355e-05 0.005077 0.00394238 26 147 18 6.65987e+06 25356 477104. 1650.88 0.34 0.0114991 0.00880918 117 11 81 81 2624 1074 0.890248 0.890248 -9.24556 -0.890248 0 0 585099. 2024.56 0.13 0.00 0.0014454 0.00115645 13 -1 6 6 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 2.09 0.02 6084 1 0.01 -1 -1 29624 -1 -1 2 11 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63784 11 6 41 42 1 26 19 17 17 289 -1 unnamed_device 0.01 57 0.01 0.00 0.682848 -9.10125 -0.682848 0.682848 0.47 6.0468e-05 4.8292e-05 0.00543438 0.00422617 32 168 23 6.65987e+06 25356 554710. 1919.41 0.49 0.0162522 0.0124174 139 19 157 157 7253 2469 0.790989 0.790989 -11.5852 -0.790989 0 0 701300. 2426.64 0.15 0.01 0.00265487 0.00212202 16 -1 7 7 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 2.03 0.03 6088 1 0.01 -1 -1 29780 -1 -1 3 13 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63832 13 7 48 49 1 32 23 17 17 289 -1 unnamed_device 0.01 72 0.01 0.00 0.704848 -11.0389 -0.704848 0.704848 0.48 6.5355e-05 5.1487e-05 0.00640209 0.00500744 26 266 33 6.65987e+06 38034 477104. 1650.88 0.36 0.0163114 0.012617 232 24 280 280 19886 6259 1.13065 1.13065 -16.5577 -1.13065 0 0 585099. 2024.56 0.14 0.01 0.00436445 0.00332188 19 -1 8 8 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 1.98 0.01 6192 1 0.01 -1 -1 29800 -1 -1 3 15 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63880 15 8 55 56 1 38 26 17 17 289 -1 unnamed_device 0.02 102 0.01 0.00 0.944958 -13.6801 -0.944958 0.944958 0.48 7.2328e-05 5.7106e-05 0.00598628 0.00473084 30 300 11 6.65987e+06 38034 526063. 1820.29 0.39 0.0142612 0.0113092 250 13 141 141 6876 2100 0.976248 0.976248 -18.88 -0.976248 0 0 666494. 2306.21 0.14 0.01 0.00228047 0.00186327 22 -1 9 9 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 1.99 0.01 6128 1 0.00 -1 -1 29804 -1 -1 4 17 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63588 17 9 62 63 1 41 30 17 17 289 -1 unnamed_device 0.01 119 0.02 0.00 0.955958 -15.9716 -0.955958 0.955958 0.48 8.0555e-05 6.3967e-05 0.0106525 0.00840112 30 277 16 6.65987e+06 50712 526063. 1820.29 0.40 0.0201548 0.015971 241 15 142 142 7560 2194 0.987248 0.987248 -20.121 -0.987248 0 0 666494. 2306.21 0.14 0.01 0.00284154 0.00232147 25 -1 10 10 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 2.25 0.02 6232 1 0.01 -1 -1 29944 -1 -1 4 19 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64076 19 10 69 70 1 44 33 17 17 289 -1 unnamed_device 0.01 135 0.03 0.00 0.966958 -17.553 -0.966958 0.966958 0.59 8.7577e-05 7.062e-05 0.0121552 0.00969414 28 327 11 6.65987e+06 50712 500653. 1732.36 0.39 0.021607 0.0173048 332 12 170 170 10248 3159 0.998248 0.998248 -24.0174 -0.998248 0 0 612192. 2118.31 0.14 0.01 0.00264146 0.00219579 28 -1 11 11 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 2.05 0.01 6144 1 0.01 -1 -1 29796 -1 -1 5 21 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64288 21 11 76 77 1 49 37 17 17 289 -1 unnamed_device 0.01 149 0.03 0.00 0.977958 -19.8665 -0.977958 0.977958 0.47 0.000106452 7.4111e-05 0.0116882 0.00937644 32 409 23 6.65987e+06 63390 554710. 1919.41 0.41 0.0235622 0.0188991 352 12 229 229 13587 3929 0.976248 0.976248 -24.6639 -0.976248 0 0 701300. 2426.64 0.17 0.01 0.00369879 0.00311713 31 -1 12 12 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 2.11 0.01 6184 1 0.01 -1 -1 29732 -1 -1 5 23 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64132 23 12 83 84 1 55 40 17 17 289 -1 unnamed_device 0.01 352 0.03 0.00 0.988958 -26.7586 -0.988958 0.988958 0.54 0.00010323 8.4684e-05 0.0129871 0.0105762 32 586 15 6.65987e+06 63390 554710. 1919.41 0.41 0.0243584 0.0197725 576 14 252 252 21511 4766 0.889048 0.889048 -31.6101 -0.889048 0 0 701300. 2426.64 0.15 0.01 0.00326021 0.00273387 34 -1 13 13 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 2.13 0.02 6256 1 0.01 -1 -1 29804 -1 -1 5 25 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63920 25 13 90 91 1 61 43 17 17 289 -1 unnamed_device 0.01 190 0.03 0.00 0.999958 -23.6852 -0.999958 0.999958 0.47 0.000332458 0.000309771 0.0149496 0.0121941 32 563 16 6.65987e+06 63390 554710. 1919.41 0.43 0.0273777 0.0222905 436 12 292 292 15799 4968 1.00925 1.00925 -30.2469 -1.00925 0 0 701300. 2426.64 0.15 0.01 0.00315647 0.00264548 37 -1 14 14 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 2.12 0.03 6192 1 0.00 -1 -1 29768 -1 -1 6 27 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64256 27 14 97 98 1 67 47 17 17 289 -1 unnamed_device 0.01 242 0.03 0.00 1.01096 -26.7529 -1.01096 1.01096 0.49 0.000110096 9.0026e-05 0.0116926 0.0095135 30 599 16 6.65987e+06 76068 526063. 1820.29 0.40 0.0246361 0.0201464 469 9 157 157 9145 2448 0.922048 0.922048 -32.1405 -0.922048 0 0 666494. 2306.21 0.15 0.01 0.00283919 0.00245163 40 -1 15 15 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 2.20 0.02 6204 1 0.00 -1 -1 29776 -1 -1 6 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64436 29 15 104 105 1 73 50 17 17 289 -1 unnamed_device 0.02 261 0.04 0.00 1.02196 -28.7498 -1.02196 1.02196 0.48 0.000116396 9.5559e-05 0.0155417 0.0126717 28 640 16 6.65987e+06 76068 500653. 1732.36 0.42 0.0299041 0.0245829 550 18 334 334 22307 6291 1.02025 1.02025 -36.1848 -1.02025 0 0 612192. 2118.31 0.16 0.02 0.00638481 0.00535542 43 -1 16 16 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 2.15 0.02 6100 1 0.01 -1 -1 29736 -1 -1 7 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64488 31 16 111 112 1 79 54 17 17 289 -1 unnamed_device 0.02 288 0.04 0.00 1.26207 -31.2273 -1.26207 1.26207 0.48 0.000123569 0.000100747 0.0166051 0.0135487 28 725 21 6.65987e+06 88746 500653. 1732.36 0.41 0.0322845 0.0263847 584 17 359 359 23619 6366 1.04025 1.04025 -37.8335 -1.04025 0 0 612192. 2118.31 0.14 0.01 0.004696 0.00395049 46 -1 17 17 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 2.36 0.01 6308 1 0.01 -1 -1 29848 -1 -1 7 33 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64148 33 17 118 119 1 82 57 17 17 289 -1 unnamed_device 0.01 310 0.05 0.00 1.27307 -34.3167 -1.27307 1.27307 0.52 0.000177258 0.000143898 0.0201204 0.0164644 32 727 23 6.65987e+06 88746 554710. 1919.41 0.56 0.0461614 0.0382604 624 11 369 369 22235 6253 1.06225 1.06225 -41.0896 -1.06225 0 0 701300. 2426.64 0.15 0.01 0.0037209 0.00318454 49 -1 18 18 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 2.19 0.01 6184 1 0.01 -1 -1 29828 -1 -1 8 37 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64456 37 19 132 133 1 90 64 17 17 289 -1 unnamed_device 0.01 452 0.05 0.00 1.29507 -41.2498 -1.29507 1.29507 0.49 0.000140277 0.000116991 0.0186693 0.0154832 26 956 16 6.65987e+06 101424 477104. 1650.88 0.44 0.0365254 0.030135 867 15 448 448 32158 8108 1.08425 1.08425 -49.1497 -1.08425 0 0 585099. 2024.56 0.13 0.01 0.00493097 0.00420987 55 -1 20 20 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 2.28 0.02 6320 1 0.00 -1 -1 29788 -1 -1 8 41 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64780 41 21 146 147 1 102 70 17 17 289 -1 unnamed_device 0.02 375 0.05 0.00 1.31707 -44.0199 -1.31707 1.31707 0.48 0.00015352 0.000127194 0.020701 0.0172136 32 1111 22 6.65987e+06 101424 554710. 1919.41 0.48 0.0441389 0.0368212 880 14 558 558 41837 11255 1.24845 1.24845 -56.8144 -1.24845 0 0 701300. 2426.64 0.15 0.02 0.00528167 0.00455035 61 -1 22 22 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 2.27 0.02 6384 1 0.01 -1 -1 29860 -1 -1 9 45 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64668 45 23 160 161 1 114 77 17 17 289 -1 unnamed_device 0.03 468 0.06 0.00 1.33907 -50.0794 -1.33907 1.33907 0.48 0.000167402 0.000140798 0.02234 0.0186379 32 1079 13 6.65987e+06 114102 554710. 1919.41 0.47 0.041857 0.0352276 883 16 559 559 33582 9263 1.13925 1.13925 -56.8672 -1.13925 0 0 701300. 2426.64 0.16 0.02 0.00615946 0.00530333 67 -1 24 24 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 2.20 0.01 6320 1 0.00 -1 -1 29840 -1 -1 10 49 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64444 49 25 174 175 1 123 84 17 17 289 -1 unnamed_device 0.02 609 0.07 0.00 1.59018 -57.2422 -1.59018 1.59018 0.48 0.00019085 0.000160687 0.0230214 0.0191738 28 1352 30 6.65987e+06 126780 500653. 1732.36 0.48 0.0483581 0.0405375 1138 11 547 547 44954 10973 1.16919 1.16919 -66.08 -1.16919 0 0 612192. 2118.31 0.14 0.02 0.0054145 0.004744 73 -1 26 26 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 2.16 0.02 6572 1 0.01 -1 -1 29828 -1 -1 11 57 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64832 57 29 202 203 1 143 97 17 17 289 -1 unnamed_device 0.02 898 0.08 0.00 1.63418 -74.7046 -1.63418 1.63418 0.47 0.000207053 0.000175723 0.0271476 0.0228251 30 1565 19 6.65987e+06 139458 526063. 1820.29 0.44 0.0523397 0.0444174 1455 16 580 580 46044 10536 1.18125 1.18125 -81.5206 -1.18125 0 0 666494. 2306.21 0.15 0.02 0.00734267 0.0063874 85 -1 30 30 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 2.22 0.02 6360 1 0.01 -1 -1 29808 -1 -1 13 65 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64364 65 33 230 231 1 164 111 17 17 289 -1 unnamed_device 0.02 931 0.10 0.00 1.90729 -85.7095 -1.90729 1.90729 0.47 0.000228338 0.00019526 0.0311728 0.0264843 30 1765 17 6.65987e+06 164814 526063. 1820.29 0.44 0.0586008 0.0500952 1545 11 558 558 39521 9317 1.27945 1.27945 -90.972 -1.27945 0 0 666494. 2306.21 0.15 0.03 0.00982351 0.00862243 97 -1 34 34 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 2.43 0.01 6508 1 0.01 -1 -1 30116 -1 -1 19 97 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65460 97 49 342 343 1 246 165 17 17 289 -1 unnamed_device 0.03 1354 0.16 0.00 2.54151 -141.961 -2.54151 2.54151 0.47 0.000338554 0.000292834 0.0452489 0.0390888 30 2746 20 6.65987e+06 240882 526063. 1820.29 0.51 0.0874539 0.0760946 2328 13 904 904 67841 16296 1.31245 1.31245 -133.972 -1.31245 0 0 666494. 2306.21 0.15 0.03 0.0106732 0.00959139 145 -1 50 50 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 2.72 0.02 6736 1 0.01 -1 -1 30256 -1 -1 25 129 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66420 129 65 454 455 1 328 219 17 17 289 -1 unnamed_device 0.05 2011 0.26 0.00 3.17573 -211.605 -3.17573 3.17573 0.51 0.000464178 0.00041107 0.0647282 0.0562511 32 4091 28 6.65987e+06 316950 554710. 1919.41 0.63 0.132755 0.116625 3486 17 1477 1477 141277 32594 1.71145 1.71145 -201.707 -1.71145 0 0 701300. 2426.64 0.15 0.05 0.0169475 0.0151977 193 -1 66 66 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_003bits.v common 1.95 0.01 6048 1 0.00 -1 -1 29652 -1 -1 1 7 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64592 7 4 27 28 1 12 12 17 17 289 -1 unnamed_device 0.02 23 0.01 0.00 0.723895 -7.02006 -0.723895 0.723895 0.49 4.3828e-05 3.3426e-05 0.00349773 0.00267999 22 90 7 6.95648e+06 14475.7 443629. 1535.05 0.31 0.00803093 0.00612621 91 4 29 29 2311 748 0.74674 0.74674 -9.02487 -0.74674 0 0 531479. 1839.03 0.12 0.00 0.000797487 0.000656706 5 -1 5 5 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_004bits.v common 1.91 0.01 6240 1 0.01 -1 -1 29748 -1 -1 1 9 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64712 9 5 34 35 1 15 15 17 17 289 -1 unnamed_device 0.02 31 0.01 0.00 0.712895 -8.48473 -0.712895 0.712895 0.51 5.4553e-05 4.1951e-05 0.0059463 0.00462333 20 111 13 6.95648e+06 14475.7 414966. 1435.87 0.29 0.00791677 0.00617941 99 13 45 45 5491 1592 0.87204 0.87204 -9.86303 -0.87204 0 0 503264. 1741.40 0.11 0.01 0.00162992 0.00130061 7 -1 6 6 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_005bits.v common 2.08 0.01 6100 1 0.00 -1 -1 29756 -1 -1 1 11 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64660 11 6 41 42 1 19 18 17 17 289 -1 unnamed_device 0.03 42 0.02 0.00 0.699132 -10.9806 -0.699132 0.699132 0.50 6.0985e-05 4.7049e-05 0.00734898 0.00566765 30 136 13 6.95648e+06 14475.7 556674. 1926.21 0.41 0.0141841 0.0110032 89 9 35 35 1318 532 0.74674 0.74674 -11.4818 -0.74674 0 0 706193. 2443.58 0.15 0.00 0.00150602 0.00124314 8 -1 7 7 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_006bits.v common 2.02 0.02 6128 1 0.00 -1 -1 29696 -1 -1 2 13 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64612 13 7 48 49 1 25 22 17 17 289 -1 unnamed_device 0.02 58 0.02 0.00 0.738332 -12.4656 -0.738332 0.738332 0.49 6.5948e-05 5.2095e-05 0.00726095 0.00571542 26 160 12 6.95648e+06 28951.4 503264. 1741.40 0.38 0.0166908 0.0131263 167 9 78 78 3196 1124 0.834592 0.834592 -14.9716 -0.834592 0 0 618332. 2139.56 0.13 0.00 0.00170898 0.0013999 10 -1 8 8 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_007bits.v common 2.36 0.01 6156 1 0.00 -1 -1 29732 -1 -1 2 15 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64240 15 8 55 56 1 32 25 17 17 289 -1 unnamed_device 0.05 75 0.02 0.00 0.771332 -15.1353 -0.771332 0.771332 0.55 7.2245e-05 5.7175e-05 0.00866364 0.0068332 26 293 20 6.95648e+06 28951.4 503264. 1741.40 0.41 0.0200006 0.0157986 224 23 222 222 10916 3698 1.05303 1.05303 -18.709 -1.05303 0 0 618332. 2139.56 0.15 0.01 0.00410128 0.00328544 11 -1 9 9 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_008bits.v common 2.09 0.02 6104 1 0.00 -1 -1 29768 -1 -1 2 17 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64368 17 9 62 63 1 36 28 17 17 289 -1 unnamed_device 0.04 89 0.02 0.00 0.749332 -16.093 -0.749332 0.749332 0.50 8.0003e-05 6.3014e-05 0.007956 0.00635134 26 320 44 6.95648e+06 28951.4 503264. 1741.40 0.38 0.0214823 0.0171574 285 22 245 245 13815 4589 1.17833 1.17833 -21.7173 -1.17833 0 0 618332. 2139.56 0.13 0.01 0.00376892 0.0030505 13 -1 10 10 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_009bits.v common 2.03 0.01 6116 1 0.01 -1 -1 29816 -1 -1 2 19 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64816 19 10 69 70 1 42 31 17 17 289 -1 unnamed_device 0.03 101 0.02 0.00 0.760332 -17.7656 -0.760332 0.760332 0.48 8.6643e-05 6.9317e-05 0.00970053 0.00776916 28 329 24 6.95648e+06 28951.4 531479. 1839.03 0.40 0.0213568 0.0171115 235 22 268 268 12657 4685 1.20033 1.20033 -23.941 -1.20033 0 0 648988. 2245.63 0.13 0.01 0.00402797 0.00329748 14 -1 11 11 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_010bits.v common 2.09 0.01 6120 1 0.00 -1 -1 29656 -1 -1 2 21 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64580 21 11 76 77 1 48 34 17 17 289 -1 unnamed_device 0.02 125 0.02 0.00 0.760332 -20.7626 -0.760332 0.760332 0.49 9.1165e-05 7.3528e-05 0.00781717 0.00627987 32 477 16 6.95648e+06 28951.4 586450. 2029.24 0.42 0.0192464 0.0155879 428 19 310 310 22773 6453 1.07503 1.07503 -28.8173 -1.07503 0 0 744469. 2576.02 0.15 0.01 0.00384549 0.00316514 16 -1 12 12 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_011bits.v common 2.48 0.02 6192 1 0.00 -1 -1 29616 -1 -1 3 23 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64572 23 12 83 84 1 55 38 17 17 289 -1 unnamed_device 0.04 146 0.03 0.00 0.782332 -22.6521 -0.782332 0.782332 0.60 0.000102959 8.354e-05 0.013218 0.0107052 28 438 15 6.95648e+06 43427 531479. 1839.03 0.51 0.0259783 0.0210478 381 16 292 292 16222 5998 1.16733 1.16733 -32.6205 -1.16733 0 0 648988. 2245.63 0.14 0.01 0.00378935 0.00317422 17 -1 13 13 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_012bits.v common 2.16 0.03 6124 1 0.00 -1 -1 29816 -1 -1 3 25 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64680 25 13 90 91 1 60 41 17 17 289 -1 unnamed_device 0.03 162 0.03 0.00 0.815332 -25.6152 -0.815332 0.815332 0.48 0.000102851 8.3918e-05 0.0129398 0.0104577 32 605 20 6.95648e+06 43427 586450. 2029.24 0.44 0.0261645 0.0211971 511 17 317 317 25162 7332 1.37583 1.37583 -37.6395 -1.37583 0 0 744469. 2576.02 0.15 0.01 0.00426841 0.00359245 19 -1 14 14 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_013bits.v common 2.82 0.02 6228 1 0.01 -1 -1 29852 -1 -1 3 27 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64860 27 14 97 98 1 66 44 17 17 289 -1 unnamed_device 0.06 187 0.03 0.00 0.826332 -27.2108 -0.826332 0.826332 0.49 0.000110052 8.9219e-05 0.0136256 0.0111051 38 560 22 6.95648e+06 43427 678818. 2348.85 0.90 0.0388369 0.0310474 474 49 670 670 70937 18109 1.20653 1.20653 -34.7507 -1.20653 0 0 902133. 3121.57 0.18 0.03 0.00981327 0.0081021 21 -1 15 15 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_014bits.v common 2.76 0.01 6232 1 0.01 -1 -1 29828 -1 -1 3 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65060 29 15 104 105 1 72 47 17 17 289 -1 unnamed_device 0.03 199 0.03 0.00 0.837332 -28.9071 -0.837332 0.837332 0.49 0.000113242 9.257e-05 0.0145021 0.0117723 38 722 41 6.95648e+06 43427 678818. 2348.85 0.98 0.0460113 0.0373964 512 44 634 634 55911 15548 1.26153 1.26153 -38.1662 -1.26153 0 0 902133. 3121.57 0.18 0.03 0.0095908 0.00797488 22 -1 16 16 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_015bits.v common 2.48 0.02 6436 1 0.00 -1 -1 29764 -1 -1 3 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64932 31 16 111 112 1 78 50 17 17 289 -1 unnamed_device 0.03 250 0.04 0.00 1.08336 -32.371 -1.08336 1.08336 0.48 0.000121183 9.9137e-05 0.0150317 0.012326 34 905 45 6.95648e+06 43427 618332. 2139.56 0.75 0.0454463 0.0371938 546 17 434 434 31538 9725 1.31933 1.31933 -45.996 -1.31933 0 0 787024. 2723.27 0.16 0.01 0.00479245 0.00407199 24 -1 17 17 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_016bits.v common 2.50 0.02 6128 1 0.01 -1 -1 29892 -1 -1 4 33 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64676 33 17 118 119 1 81 54 17 17 289 -1 unnamed_device 0.05 279 0.04 0.00 1.09436 -35.3801 -1.09436 1.09436 0.48 0.000128977 0.000106101 0.0170082 0.013994 34 1006 35 6.95648e+06 57902.7 618332. 2139.56 0.71 0.0473873 0.039048 671 14 438 438 43245 10869 1.29733 1.29733 -48.499 -1.29733 0 0 787024. 2723.27 0.16 0.02 0.00455801 0.00389627 25 -1 18 18 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_018bits.v common 2.48 0.01 6148 1 0.01 -1 -1 29928 -1 -1 4 37 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64992 37 19 132 133 1 87 60 17 17 289 -1 unnamed_device 0.06 306 0.04 0.00 1.11636 -39.8924 -1.11636 1.11636 0.58 0.000139697 0.000115748 0.0176975 0.0146493 32 1025 50 6.95648e+06 57902.7 586450. 2029.24 0.51 0.0429548 0.0355422 787 16 488 488 44327 11731 1.48863 1.48863 -60.0035 -1.48863 0 0 744469. 2576.02 0.18 0.02 0.00544688 0.00466037 28 -1 20 20 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_020bits.v common 2.63 0.01 6228 1 0.01 -1 -1 29840 -1 -1 4 41 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65376 41 21 146 147 1 96 66 17 17 289 -1 unnamed_device 0.09 320 0.05 0.00 1.13836 -43.9474 -1.13836 1.13836 0.48 0.000157624 0.000131052 0.0212739 0.017699 34 971 37 6.95648e+06 57902.7 618332. 2139.56 0.86 0.0583539 0.0482738 797 17 495 495 38668 10504 1.52783 1.52783 -63.528 -1.52783 0 0 787024. 2723.27 0.16 0.02 0.00612225 0.0052474 31 -1 22 22 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_022bits.v common 2.89 0.02 6248 1 0.01 -1 -1 29756 -1 -1 5 45 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65364 45 23 160 161 1 107 73 17 17 289 -1 unnamed_device 0.07 382 0.09 0.00 1.16036 -49.0488 -1.16036 1.16036 0.63 0.000281655 0.000236198 0.0351692 0.0294702 32 1213 36 6.95648e+06 72378.4 586450. 2029.24 0.84 0.077665 0.0654233 885 31 595 595 131802 63448 1.44653 1.44653 -71.5115 -1.44653 0 0 744469. 2576.02 0.15 0.04 0.0108073 0.00923206 34 -1 24 24 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_024bits.v common 3.09 0.01 6260 1 0.01 -1 -1 29864 -1 -1 5 49 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65336 49 25 174 175 1 119 79 17 17 289 -1 unnamed_device 0.09 456 0.06 0.00 1.18236 -54.4448 -1.18236 1.18236 0.54 0.000178605 0.000149986 0.0241576 0.0202835 38 1280 46 6.95648e+06 72378.4 678818. 2348.85 1.18 0.0700144 0.0588727 923 21 705 705 56158 14248 1.28823 1.28823 -69.3193 -1.28823 0 0 902133. 3121.57 0.19 0.02 0.00843641 0.00731295 37 -1 26 26 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_028bits.v common 3.62 0.01 6268 1 0.01 -1 -1 29796 -1 -1 6 57 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65332 57 29 202 203 1 142 92 17 17 289 -1 unnamed_device 0.05 660 0.11 0.00 1.22636 -66.9978 -1.22636 1.22636 0.55 0.00032296 0.000276469 0.0425307 0.0360466 36 1601 25 6.95648e+06 86854.1 648988. 2245.63 1.58 0.107185 0.0908916 1287 17 799 799 70871 16883 1.30403 1.30403 -84.4961 -1.30403 0 0 828058. 2865.25 0.19 0.02 0.00831047 0.00725369 43 -1 30 30 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_032bits.v common 3.45 0.02 6476 1 0.01 -1 -1 29840 -1 -1 7 65 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65048 65 33 230 231 1 162 105 17 17 289 -1 unnamed_device 0.10 986 0.08 0.00 1.50539 -85.2088 -1.50539 1.50539 0.52 0.000233631 0.000201268 0.02936 0.0250319 38 1896 23 6.95648e+06 101330 678818. 2348.85 1.22 0.0844985 0.0720585 1655 19 946 946 87435 18480 1.50433 1.50433 -105.583 -1.50433 0 0 902133. 3121.57 0.26 0.05 0.0162831 0.0142633 49 -1 34 34 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_048bits.v common 3.44 0.04 6520 1 0.02 -1 -1 30180 -1 -1 10 97 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66032 97 49 342 343 1 243 156 17 17 289 -1 unnamed_device 0.07 1645 0.14 0.00 1.91642 -141.99 -1.91642 1.91642 0.50 0.000330559 0.000288397 0.0433217 0.0375463 48 2879 16 6.95648e+06 144757 865456. 2994.66 1.31 0.117298 0.102015 2641 17 1125 1125 116465 23493 1.73333 1.73333 -170.848 -1.73333 0 0 1.05005e+06 3633.38 0.20 0.04 0.0133194 0.0118759 73 -1 50 50 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml adder_064bits.v common 4.05 0.02 6808 1 0.01 -1 -1 30268 -1 -1 13 129 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66548 129 65 454 455 1 324 207 17 17 289 -1 unnamed_device 0.12 1859 0.20 0.00 2.32745 -195.825 -2.32745 2.32745 0.50 0.000444822 0.00039169 0.0600253 0.052527 50 3560 45 6.95648e+06 188184 902133. 3121.57 1.82 0.182393 0.160464 3085 21 1597 1597 151577 32599 1.66293 1.66293 -205.884 -1.66293 0 0 1.08113e+06 3740.92 0.21 0.06 0.020918 0.0188025 97 -1 66 66 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_003bits.v common 2.06 0.01 6152 1 0.00 -1 -1 29740 -1 -1 1 7 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63964 7 4 27 28 1 12 12 17 17 289 -1 unnamed_device 0.02 22 0.01 0.00 0.600542 -6.40135 -0.600542 0.600542 0.66 6.7943e-05 5.3589e-05 0.00591043 0.00454822 20 71 8 6.99608e+06 14715.7 414966. 1435.87 0.33 0.00720611 0.00556217 64 9 28 28 859 338 0.74674 0.74674 -7.27845 -0.74674 0 0 503264. 1741.40 0.11 0.00 0.00120885 0.000974096 5 -1 5 5 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_004bits.v common 1.84 0.01 6232 1 0.00 -1 -1 29656 -1 -1 1 9 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64388 9 5 34 35 1 15 15 17 17 289 -1 unnamed_device 0.01 32 0.01 0.00 0.589542 -7.95317 -0.589542 0.589542 0.49 5.1201e-05 4.0192e-05 0.00511985 0.00394284 20 123 17 6.99608e+06 14715.7 414966. 1435.87 0.29 0.00736046 0.00570756 79 8 48 48 1368 546 0.74674 0.74674 -8.83027 -0.74674 0 0 503264. 1741.40 0.12 0.00 0.00121439 0.000980069 7 -1 6 6 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_005bits.v common 1.88 0.01 6160 1 0.00 -1 -1 29624 -1 -1 1 11 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64664 11 6 41 42 1 19 18 17 17 289 -1 unnamed_device 0.03 42 0.01 0.00 0.826432 -11.5779 -0.826432 0.826432 0.49 6.0237e-05 4.6485e-05 0.0069393 0.00543408 20 135 7 6.99608e+06 14715.7 414966. 1435.87 0.29 0.00852745 0.0067388 124 8 66 66 4313 1440 0.826432 0.826432 -13.2068 -0.826432 0 0 503264. 1741.40 0.11 0.00 0.00144779 0.00118845 8 -1 7 7 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_006bits.v common 1.96 0.02 6148 1 0.01 -1 -1 29780 -1 -1 2 13 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64564 13 7 48 49 1 27 22 17 17 289 -1 unnamed_device 0.01 62 0.02 0.00 0.699132 -12.2696 -0.699132 0.699132 0.49 6.5687e-05 5.1351e-05 0.00797316 0.00624441 20 183 21 6.99608e+06 29431.4 414966. 1435.87 0.29 0.0114754 0.0090496 176 10 101 101 7661 2404 0.916732 0.916732 -15.9706 -0.916732 0 0 503264. 1741.40 0.16 0.01 0.00176657 0.00145493 10 -1 8 8 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_007bits.v common 2.09 0.01 6240 1 0.00 -1 -1 29736 -1 -1 2 15 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64368 15 8 55 56 1 33 25 17 17 289 -1 unnamed_device 0.03 72 0.02 0.00 0.960785 -15.9501 -0.960785 0.960785 0.49 7.2221e-05 5.7227e-05 0.00767258 0.00604296 26 217 17 6.99608e+06 29431.4 503264. 1741.40 0.46 0.0200891 0.0159139 166 8 101 101 3684 1629 0.960785 0.960785 -18.9573 -0.960785 0 0 618332. 2139.56 0.13 0.00 0.00176092 0.00147904 11 -1 9 9 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_008bits.v common 2.10 0.02 6112 1 0.00 -1 -1 29692 -1 -1 2 17 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64672 17 9 62 63 1 37 28 17 17 289 -1 unnamed_device 0.01 92 0.02 0.00 0.732132 -16.0216 -0.732132 0.732132 0.49 7.8777e-05 6.324e-05 0.00817919 0.00652137 32 297 23 6.99608e+06 29431.4 586450. 2029.24 0.42 0.0187294 0.014924 241 18 262 262 12418 4194 0.960732 0.960732 -20.4084 -0.960732 0 0 744469. 2576.02 0.15 0.01 0.00319799 0.00258854 13 -1 10 10 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_009bits.v common 2.46 0.01 6220 1 0.01 -1 -1 29684 -1 -1 2 19 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64320 19 10 69 70 1 42 31 17 17 289 -1 unnamed_device 0.03 117 0.02 0.00 0.721132 -17.3659 -0.721132 0.721132 0.59 8.4409e-05 6.8373e-05 0.0081211 0.0064899 30 392 21 6.99608e+06 29431.4 556674. 1926.21 0.46 0.0209467 0.0166986 328 15 261 261 16388 4940 0.916732 0.916732 -23.8786 -0.916732 0 0 706193. 2443.58 0.18 0.01 0.00333871 0.00279452 14 -1 11 11 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_010bits.v common 2.08 0.02 6188 1 0.00 -1 -1 29864 -1 -1 2 21 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64508 21 11 76 77 1 48 34 17 17 289 -1 unnamed_device 0.01 130 0.02 0.00 0.743132 -19.8824 -0.743132 0.743132 0.49 9.1717e-05 7.5057e-05 0.01098 0.0089089 32 444 13 6.99608e+06 29431.4 586450. 2029.24 0.43 0.0216033 0.0174511 391 11 231 231 14585 4797 0.993732 0.993732 -28.7787 -0.993732 0 0 744469. 2576.02 0.15 0.01 0.00267488 0.00224017 16 -1 12 12 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_011bits.v common 2.13 0.03 6232 1 0.00 -1 -1 29612 -1 -1 3 23 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64800 23 12 83 84 1 54 38 17 17 289 -1 unnamed_device 0.03 147 0.02 0.00 0.754132 -22.4284 -0.754132 0.754132 0.49 9.7136e-05 7.9067e-05 0.00932715 0.00750935 32 564 19 6.99608e+06 44147 586450. 2029.24 0.43 0.0219861 0.0176146 451 14 320 320 23678 7108 1.04203 1.04203 -31.1697 -1.04203 0 0 744469. 2576.02 0.17 0.01 0.00335893 0.00280215 17 -1 13 13 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_012bits.v common 2.44 0.02 6080 1 0.00 -1 -1 29748 -1 -1 3 25 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64852 25 13 90 91 1 60 41 17 17 289 -1 unnamed_device 0.01 243 0.03 0.00 0.776132 -25.0195 -0.776132 0.776132 0.49 0.000101521 8.513e-05 0.0112933 0.00917709 34 707 18 6.99608e+06 44147 618332. 2139.56 0.72 0.0333734 0.0267719 619 17 322 322 32934 7657 1.17833 1.17833 -37.0099 -1.17833 0 0 787024. 2723.27 0.16 0.01 0.00404668 0.00334888 19 -1 14 14 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_013bits.v common 2.36 0.02 6152 1 0.00 -1 -1 29812 -1 -1 3 27 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65044 27 14 97 98 1 66 44 17 17 289 -1 unnamed_device 0.07 184 0.02 0.00 0.787132 -26.2 -0.787132 0.787132 0.49 0.000108564 8.9037e-05 0.00894846 0.00729021 30 615 16 6.99608e+06 44147 556674. 1926.21 0.41 0.0221635 0.0180761 491 18 355 355 19522 6188 1.01573 1.01573 -36.366 -1.01573 0 0 706193. 2443.58 0.15 0.01 0.00445217 0.00371171 21 -1 15 15 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_014bits.v common 2.49 0.01 6144 1 0.00 -1 -1 29644 -1 -1 3 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64644 29 15 104 105 1 72 47 17 17 289 -1 unnamed_device 0.01 201 0.03 0.00 0.809132 -28.1284 -0.809132 0.809132 0.48 0.000115427 9.5189e-05 0.0138707 0.0113491 36 494 26 6.99608e+06 44147 648988. 2245.63 0.76 0.0399439 0.0325966 386 39 548 548 27863 9238 1.05973 1.05973 -35.897 -1.05973 0 0 828058. 2865.25 0.16 0.02 0.00859605 0.00719404 22 -1 16 16 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_015bits.v common 2.76 0.02 6156 1 0.00 -1 -1 29708 -1 -1 3 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65132 31 16 111 112 1 78 50 17 17 289 -1 unnamed_device 0.01 262 0.04 0.00 1.05516 -31.3135 -1.05516 1.05516 0.51 0.00012161 9.9359e-05 0.0160489 0.0129914 34 975 23 6.99608e+06 44147 618332. 2139.56 0.87 0.0471302 0.0383029 636 15 450 450 37562 9831 1.33033 1.33033 -45.4763 -1.33033 0 0 787024. 2723.27 0.16 0.01 0.00436306 0.00369356 24 -1 17 17 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_016bits.v common 2.67 0.02 6212 1 0.01 -1 -1 29880 -1 -1 4 33 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65052 33 17 118 119 1 81 54 17 17 289 -1 unnamed_device 0.02 231 0.04 0.00 1.06616 -33.9185 -1.06616 1.06616 0.51 0.000132013 0.000109056 0.0167658 0.0138711 36 715 29 6.99608e+06 58862.7 648988. 2245.63 0.89 0.0477197 0.0391553 533 16 468 468 31010 9966 1.41163 1.41163 -47.2705 -1.41163 0 0 828058. 2865.25 0.16 0.01 0.00487881 0.00413592 25 -1 18 18 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_018bits.v common 2.51 0.02 6308 1 0.01 -1 -1 29800 -1 -1 4 37 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64772 37 19 132 133 1 87 60 17 17 289 -1 unnamed_device 0.02 309 0.04 0.00 1.08816 -39.5021 -1.08816 1.08816 0.50 0.000142283 0.000117047 0.017847 0.0146921 34 965 25 6.99608e+06 58862.7 618332. 2139.56 0.75 0.0486829 0.0402362 740 17 464 464 45870 11145 1.27533 1.27533 -52.3382 -1.27533 0 0 787024. 2723.27 0.16 0.02 0.00557792 0.00477617 28 -1 20 20 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_020bits.v common 2.52 0.02 6216 1 0.01 -1 -1 29844 -1 -1 4 41 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64872 41 21 146 147 1 94 66 17 17 289 -1 unnamed_device 0.02 427 0.04 0.00 1.11016 -44.6284 -1.11016 1.11016 0.49 0.00015513 0.000129997 0.0151762 0.0126855 34 1109 15 6.99608e+06 58862.7 618332. 2139.56 0.77 0.0465545 0.0386945 946 15 465 465 43827 10379 1.26003 1.26003 -62.4224 -1.26003 0 0 787024. 2723.27 0.17 0.02 0.00598005 0.00515668 31 -1 22 22 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_022bits.v common 2.76 0.01 6240 1 0.01 -1 -1 29784 -1 -1 5 45 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65032 45 23 160 161 1 106 73 17 17 289 -1 unnamed_device 0.02 395 0.05 0.00 1.13216 -49.1722 -1.13216 1.13216 0.48 0.000166416 0.000138413 0.0211166 0.0176138 34 1245 27 6.99608e+06 73578.4 618332. 2139.56 1.02 0.0596292 0.0497077 988 16 558 558 60588 14190 1.43363 1.43363 -67.2639 -1.43363 0 0 787024. 2723.27 0.16 0.02 0.00627428 0.00542236 34 -1 24 24 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_024bits.v common 2.63 0.01 6400 1 0.01 -1 -1 29928 -1 -1 5 49 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65320 49 25 174 175 1 118 79 17 17 289 -1 unnamed_device 0.02 741 0.06 0.00 1.15416 -63.2828 -1.15416 1.15416 0.51 0.000189095 0.000151127 0.0232426 0.0195964 34 1490 19 6.99608e+06 73578.4 618332. 2139.56 0.78 0.0605266 0.0508421 1360 14 605 605 64379 13536 1.29303 1.29303 -79.1779 -1.29303 0 0 787024. 2723.27 0.20 0.02 0.00613643 0.00534527 37 -1 26 26 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_028bits.v common 2.78 0.01 6472 1 0.01 -1 -1 29916 -1 -1 6 57 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65192 57 29 202 203 1 141 92 17 17 289 -1 unnamed_device 0.05 759 0.07 0.00 1.19816 -71.3375 -1.19816 1.19816 0.49 0.00020517 0.000174406 0.0265147 0.0224556 34 1844 28 6.99608e+06 88294.1 618332. 2139.56 0.97 0.0723341 0.0611766 1542 16 760 760 74733 16572 1.23373 1.23373 -89.7533 -1.23373 0 0 787024. 2723.27 0.16 0.02 0.00757543 0.0065711 43 -1 30 30 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_032bits.v common 3.64 0.01 6360 1 0.02 -1 -1 29864 -1 -1 7 65 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65428 65 33 230 231 1 162 105 17 17 289 -1 unnamed_device 0.04 1078 0.08 0.00 1.47719 -89.4357 -1.47719 1.47719 0.48 0.000223629 0.000192179 0.0283758 0.0243257 36 2166 33 6.99608e+06 103010 648988. 2245.63 1.66 0.0918535 0.0783384 1923 20 872 872 105151 20485 1.28868 1.28868 -105.778 -1.28868 0 0 828058. 2865.25 0.16 0.03 0.0100357 0.00872541 49 -1 34 34 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_048bits.v common 3.37 0.02 6572 1 0.02 -1 -1 30084 -1 -1 10 97 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66008 97 49 342 343 1 243 156 17 17 289 -1 unnamed_device 0.04 1532 0.14 0.00 1.88822 -137.621 -1.88822 1.88822 0.48 0.000330395 0.000287685 0.045117 0.0389832 46 2876 44 6.99608e+06 147157 828058. 2865.25 1.35 0.131585 0.114212 2470 19 1137 1137 120617 24356 1.59418 1.59418 -159.681 -1.59418 0 0 1.01997e+06 3529.29 0.19 0.04 0.0141228 0.0125588 73 -1 50 50 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml adder_064bits.v common 4.51 0.01 6708 1 0.02 -1 -1 30272 -1 -1 13 129 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66360 129 65 454 455 1 324 207 17 17 289 -1 unnamed_device 0.05 2133 0.20 0.00 2.29925 -201.154 -2.29925 2.29925 0.49 0.000449184 0.000397681 0.0575506 0.0504333 46 4075 29 6.99608e+06 191304 828058. 2865.25 2.31 0.169555 0.148658 3597 19 1522 1522 203920 39314 1.69403 1.69403 -215.975 -1.69403 0 0 1.01997e+06 3529.29 0.23 0.06 0.0208947 0.018729 97 -1 66 66 0 0
+ fixed_k6_frac_N8_22nm.xml adder_003bits.v common 1.87 0.02 5804 1 0.01 -1 -1 31916 -1 -1 1 7 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63752 7 4 21 25 1 11 12 17 17 289 -1 unnamed_device 0.01 22 0.01 0.00 0.633095 -5.79841 -0.633095 0.633095 0.49 3.9821e-05 2.9554e-05 0.00408282 0.00304008 18 78 13 6.79088e+06 13472 376052. 1301.22 0.27 0.00559794 0.00420528 68 8 25 25 2421 702 0.99734 0.99734 -7.05141 -0.99734 0 0 470940. 1629.55 0.10 0.00 0.00096128 0.000760046 6 4 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml adder_004bits.v common 1.81 0.01 5872 2 0.02 -1 -1 31972 -1 -1 1 9 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63812 9 5 28 33 1 14 15 17 17 289 -1 unnamed_device 0.01 27 0.01 0.00 0.672295 -7.52985 -0.672295 0.672295 0.49 4.9018e-05 3.7312e-05 0.00405201 0.00306129 18 108 12 6.79088e+06 13472 376052. 1301.22 0.26 0.00583051 0.00446358 68 5 23 23 924 411 0.834592 0.834592 -9.53465 -0.834592 0 0 470940. 1629.55 0.10 0.00 0.000949969 0.000773706 8 6 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml adder_005bits.v common 2.06 0.01 5952 2 0.02 -1 -1 31716 -1 -1 2 11 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63720 11 6 34 40 1 23 19 17 17 289 -1 unnamed_device 0.01 54 0.02 0.00 0.847985 -10.8382 -0.847985 0.847985 0.49 5.6077e-05 4.1988e-05 0.00669533 0.00508677 26 152 13 6.79088e+06 26944 503264. 1741.40 0.44 0.016251 0.0124803 128 7 66 68 2202 829 0.847985 0.847985 -12.052 -0.847985 0 0 618332. 2139.56 0.14 0.00 0.00130375 0.00107829 10 7 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml adder_006bits.v common 1.99 0.02 5836 3 0.03 -1 -1 31900 -1 -1 2 13 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63704 13 7 41 48 1 30 22 17 17 289 -1 unnamed_device 0.04 72 0.01 0.00 1.31009 -13.9313 -1.31009 1.31009 0.49 6.442e-05 4.9735e-05 0.00587283 0.00456599 24 246 9 6.79088e+06 26944 470940. 1629.55 0.33 0.0129965 0.0101548 210 12 120 132 5503 1909 1.52488 1.52488 -16.8132 -1.52488 0 0 586450. 2029.24 0.12 0.01 0.0019798 0.00162424 11 9 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml adder_007bits.v common 2.11 0.02 5968 3 0.04 -1 -1 31612 -1 -1 2 15 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64060 15 8 47 55 1 36 25 17 17 289 -1 unnamed_device 0.01 93 0.01 0.00 1.09864 -16.3495 -1.09864 1.09864 0.49 7.0668e-05 5.5158e-05 0.00601559 0.00473876 32 321 12 6.79088e+06 26944 586450. 2029.24 0.42 0.0144407 0.0114588 274 11 119 145 8349 2671 1.09864 1.09864 -20.8603 -1.09864 0 0 744469. 2576.02 0.15 0.01 0.00299113 0.00246816 13 10 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml adder_008bits.v common 2.13 0.02 5884 3 0.02 -1 -1 31804 -1 -1 2 17 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64324 17 9 56 65 1 43 28 17 17 289 -1 unnamed_device 0.05 189 0.02 0.00 1.34929 -18.9634 -1.34929 1.34929 0.49 7.9197e-05 6.4387e-05 0.008174 0.00656655 30 443 8 6.79088e+06 26944 556674. 1926.21 0.42 0.0174405 0.0140244 394 10 144 188 11178 2887 1.34929 1.34929 -24.226 -1.34929 0 0 706193. 2443.58 0.14 0.01 0.00237122 0.00201812 16 14 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml adder_009bits.v common 2.15 0.02 5980 4 0.04 -1 -1 31896 -1 -1 3 19 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63972 19 10 60 70 1 49 32 17 17 289 -1 unnamed_device 0.05 131 0.02 0.00 1.1736 -20.579 -1.1736 1.1736 0.48 8.4634e-05 6.6753e-05 0.00780239 0.00614205 26 468 15 6.79088e+06 40416 503264. 1741.40 0.39 0.0188186 0.0149132 416 9 184 209 10991 3639 1.26314 1.26314 -28.3486 -1.26314 0 0 618332. 2139.56 0.13 0.01 0.00230873 0.00195542 17 13 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml adder_010bits.v common 2.29 0.02 5900 4 0.03 -1 -1 32428 -1 -1 3 21 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64012 21 11 69 80 1 55 35 17 17 289 -1 unnamed_device 0.13 313 0.02 0.00 1.63914 -31.4447 -1.63914 1.63914 0.49 9.2036e-05 7.3459e-05 0.0112838 0.00904677 28 629 11 6.79088e+06 40416 531479. 1839.03 0.45 0.0265084 0.021454 608 13 222 273 19696 4661 1.68948 1.68948 -36.7831 -1.68948 0 0 648988. 2245.63 0.14 0.01 0.00314356 0.00266666 21 17 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml adder_011bits.v common 2.26 0.01 5876 5 0.03 -1 -1 32276 -1 -1 3 23 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64080 23 12 73 85 1 60 38 17 17 289 -1 unnamed_device 0.06 170 0.03 0.00 1.42425 -25.9442 -1.42425 1.42425 0.59 9.6599e-05 7.6974e-05 0.0134324 0.010824 28 615 45 6.79088e+06 40416 531479. 1839.03 0.43 0.0300076 0.0241588 503 15 339 347 24109 7702 1.63909 1.63909 -35.1851 -1.63909 0 0 648988. 2245.63 0.14 0.02 0.00747085 0.00593097 20 16 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml adder_012bits.v common 2.52 0.01 5936 5 0.05 -1 -1 32200 -1 -1 3 25 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64424 25 13 82 95 1 66 41 17 17 289 -1 unnamed_device 0.20 188 0.02 0.00 1.85403 -32.561 -1.85403 1.85403 0.49 0.000107555 8.7145e-05 0.00904917 0.00732583 26 692 15 6.79088e+06 40416 503264. 1741.40 0.57 0.0303675 0.0246758 580 26 303 349 80905 49822 1.85403 1.85403 -41.1283 -1.85403 0 0 618332. 2139.56 0.16 0.03 0.0058582 0.00493758 24 20 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml adder_013bits.v common 2.50 0.02 5948 5 0.03 -1 -1 31980 -1 -1 5 27 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64552 27 14 91 105 1 72 46 17 17 289 -1 unnamed_device 0.22 217 0.04 0.00 1.81483 -33.9342 -1.81483 1.81483 0.49 0.000118183 9.6388e-05 0.0165626 0.0135007 26 738 27 6.79088e+06 67360 503264. 1741.40 0.54 0.034369 0.027988 531 21 313 434 20404 6892 1.94013 1.94013 -44.0835 -1.94013 0 0 618332. 2139.56 0.15 0.02 0.00870104 0.00744514 28 24 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml adder_014bits.v common 2.69 0.02 5940 6 0.03 -1 -1 31728 -1 -1 4 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64404 29 15 95 110 1 77 48 17 17 289 -1 unnamed_device 0.18 292 0.04 0.00 2.14389 -40.7864 -2.14389 2.14389 0.50 0.000118919 9.7379e-05 0.0151059 0.0123118 34 886 16 6.79088e+06 53888 618332. 2139.56 0.71 0.0403081 0.0329993 627 11 289 332 23004 6266 2.14389 2.14389 -48.1791 -2.14389 0 0 787024. 2723.27 0.15 0.01 0.00373358 0.00323834 28 23 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml adder_015bits.v common 2.36 0.02 5968 6 0.03 -1 -1 31608 -1 -1 4 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64488 31 16 104 120 1 81 51 17 17 289 -1 unnamed_device 0.24 436 0.04 0.00 2.06549 -47.4403 -2.06549 2.06549 0.49 0.000126341 0.000103176 0.0160623 0.0131303 28 993 13 6.79088e+06 53888 531479. 1839.03 0.42 0.0315916 0.0260442 934 34 380 541 162632 103913 2.10114 2.10114 -56.3642 -2.10114 0 0 648988. 2245.63 0.13 0.05 0.00875821 0.00743132 30 27 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml adder_016bits.v common 2.94 0.01 5984 7 0.03 -1 -1 31688 -1 -1 4 33 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64732 33 17 108 125 1 88 54 17 17 289 -1 unnamed_device 0.40 551 0.04 0.00 2.60256 -58.9005 -2.60256 2.60256 0.54 0.000137405 0.000110608 0.0156012 0.0127523 34 1126 27 6.79088e+06 53888 618332. 2139.56 0.74 0.0455527 0.0377152 1042 10 343 414 32669 7599 2.60256 2.60256 -67.1703 -2.60256 0 0 787024. 2723.27 0.16 0.01 0.00387886 0.00340048 31 26 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml adder_018bits.v common 3.19 0.01 5980 7 0.03 -1 -1 31592 -1 -1 5 37 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64104 37 19 127 146 1 99 61 17 17 289 -1 unnamed_device 0.84 601 0.04 0.00 2.60599 -64.0275 -2.60599 2.60599 0.49 0.000149882 0.000125063 0.0158504 0.0132134 30 1244 13 6.79088e+06 67360 556674. 1926.21 0.43 0.0343153 0.0287839 1120 10 371 520 33079 7772 2.60599 2.60599 -72.172 -2.60599 0 0 706193. 2443.58 0.19 0.01 0.00486865 0.00432794 38 35 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml adder_020bits.v common 3.10 0.01 6016 8 0.04 -1 -1 31800 -1 -1 6 41 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64516 41 21 139 160 1 110 68 17 17 289 -1 unnamed_device 0.50 476 0.05 0.00 3.17226 -73.0609 -3.17226 3.17226 0.48 0.000162429 0.000133764 0.0214599 0.0177542 34 1178 19 6.79088e+06 80832 618332. 2139.56 0.80 0.0565621 0.0473951 973 12 389 529 29080 7959 3.17226 3.17226 -82.9596 -3.17226 0 0 787024. 2723.27 0.16 0.01 0.0058702 0.00524496 42 37 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml adder_022bits.v common 3.32 0.01 5980 9 0.04 -1 -1 31860 -1 -1 6 45 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64620 45 23 152 175 1 121 74 17 17 289 -1 unnamed_device 0.82 581 0.05 0.00 3.07154 -78.1833 -3.07154 3.07154 0.49 0.000171346 0.000144807 0.0199881 0.0166722 34 1486 18 6.79088e+06 80832 618332. 2139.56 0.72 0.0593787 0.0501158 1232 11 434 589 41020 9806 3.19684 3.19684 -91.7661 -3.19684 0 0 787024. 2723.27 0.16 0.02 0.00577541 0.00512146 45 40 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml adder_024bits.v common 4.07 0.01 6116 10 0.04 -1 -1 32420 -1 -1 6 49 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64444 49 25 165 190 1 131 80 17 17 289 -1 unnamed_device 1.09 622 0.06 0.00 3.32219 -88.6242 -3.32219 3.32219 0.51 0.0001866 0.000157638 0.0239261 0.0199067 34 1676 29 6.79088e+06 80832 618332. 2139.56 1.12 0.0763573 0.0644941 1380 11 551 771 66226 14933 3.32219 3.32219 -102.783 -3.32219 0 0 787024. 2723.27 0.16 0.02 0.00603129 0.00535761 48 43 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml adder_028bits.v common 4.69 0.02 6148 11 0.05 -1 -1 31908 -1 -1 9 57 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65468 57 29 199 228 1 157 95 17 17 289 -1 unnamed_device 1.83 615 0.08 0.00 3.61204 -104.498 -3.61204 3.61204 0.49 0.000215213 0.000181931 0.0290215 0.0242748 36 1711 14 6.79088e+06 121248 648988. 2245.63 1.03 0.0832555 0.0704069 1250 12 610 804 50421 13321 3.61204 3.61204 -117.577 -3.61204 0 0 828058. 2865.25 0.16 0.02 0.00746507 0.00663999 59 57 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml adder_032bits.v common 3.94 0.02 6160 13 0.04 -1 -1 32172 -1 -1 9 65 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64472 65 33 224 257 1 176 107 17 17 289 -1 unnamed_device 1.20 1032 0.08 0.00 4.36744 -140.808 -4.36744 4.36744 0.48 0.000239894 0.000204149 0.0309523 0.0261642 34 2046 13 6.79088e+06 121248 618332. 2139.56 0.83 0.0827663 0.070731 1942 11 657 882 59557 14108 4.49274 4.49274 -157.473 -4.49274 0 0 787024. 2723.27 0.17 0.02 0.0083922 0.00753272 65 62 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml adder_048bits.v common 4.15 0.01 6392 19 0.06 -1 -1 32344 -1 -1 14 97 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65832 97 49 340 389 1 265 160 17 17 289 -1 unnamed_device 1.56 1457 0.14 0.00 6.71624 -271.001 -6.71624 6.71624 0.49 0.000355344 0.000303796 0.0485393 0.0412658 30 3244 25 6.79088e+06 188608 556674. 1926.21 0.59 0.104235 0.0903889 2814 13 998 1330 83512 20389 6.71624 6.71624 -294.22 -6.71624 0 0 706193. 2443.58 0.15 0.05 0.0159036 0.0142741 101 98 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml adder_064bits.v common 6.64 0.02 6540 26 0.08 -1 -1 32464 -1 -1 18 129 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66540 129 65 454 519 1 353 212 17 17 289 -1 unnamed_device 3.02 2084 0.20 0.00 8.3098 -417.025 -8.3098 8.3098 0.48 0.000476596 0.000414058 0.0658931 0.0568382 40 3928 15 6.79088e+06 242496 706193. 2443.58 1.46 0.177093 0.155468 3558 22 1262 1636 231033 84544 8.5604 8.5604 -453.111 -8.5604 0 0 926341. 3205.33 0.18 0.07 0.0257287 0.0233173 131 132 -1 -1 -1 -1
+ fixed_k6_frac_ripple_N8_22nm.xml adder_003bits.v common 1.99 0.01 6096 1 0.00 -1 -1 29696 -1 -1 1 7 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63924 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 0.01 24 0.01 0.00 0.480692 -5.65412 -0.480692 0.480692 0.49 4.4428e-05 3.3735e-05 0.00342712 0.00257216 26 62 2 6.87369e+06 13973.8 503264. 1741.40 0.35 0.00757155 0.00573302 56 7 22 22 1079 375 0.74674 0.74674 -6.65652 -0.74674 0 0 618332. 2139.56 0.13 0.00 0.000941003 0.000751638 8 -1 5 5 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_004bits.v common 1.88 0.02 6156 1 0.01 -1 -1 29628 -1 -1 2 9 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64012 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 0.03 47 0.01 0.00 0.663773 -8.00422 -0.663773 0.663773 0.49 5.1855e-05 4.0125e-05 0.00400463 0.00308583 20 127 8 6.87369e+06 27947.7 414966. 1435.87 0.28 0.00548798 0.00427563 130 9 58 58 3089 986 0.903373 0.903373 -10.7468 -0.903373 0 0 503264. 1741.40 0.11 0.00 0.00127804 0.00103209 10 -1 6 6 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_005bits.v common 2.26 0.02 6232 1 0.01 -1 -1 29648 -1 -1 2 11 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64500 11 6 41 42 1 27 19 17 17 289 -1 unnamed_device 0.03 60 0.01 0.00 0.685773 -10.2194 -0.685773 0.685773 0.57 5.9305e-05 4.723e-05 0.00477023 0.00368595 30 216 9 6.87369e+06 27947.7 556674. 1926.21 0.40 0.0111225 0.00857765 157 10 110 110 5132 1613 0.800073 0.800073 -13.3159 -0.800073 0 0 706193. 2443.58 0.14 0.01 0.00163611 0.001319 12 -1 7 7 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_006bits.v common 2.00 0.01 6104 1 0.00 -1 -1 29812 -1 -1 2 13 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64640 13 7 48 49 1 33 22 17 17 289 -1 unnamed_device 0.04 81 0.01 0.00 0.707773 -12.7322 -0.707773 0.707773 0.48 6.5972e-05 5.2239e-05 0.00470014 0.00371357 30 254 18 6.87369e+06 27947.7 556674. 1926.21 0.40 0.0130744 0.0102717 240 12 172 172 9263 2884 0.925373 0.925373 -17.6202 -0.925373 0 0 706193. 2443.58 0.14 0.01 0.00197177 0.00158982 14 -1 8 8 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_007bits.v common 2.14 0.01 6116 1 0.00 -1 -1 29732 -1 -1 3 15 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64272 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 0.05 111 0.02 0.00 0.953803 -15.6907 -0.953803 0.953803 0.56 7.428e-05 5.798e-05 0.00948948 0.0074329 26 303 26 6.87369e+06 41921.5 503264. 1741.40 0.38 0.0195732 0.0152672 243 18 209 209 11367 3733 1.09267 1.09267 -19.9878 -1.09267 0 0 618332. 2139.56 0.13 0.01 0.0028456 0.00228073 17 -1 9 9 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_008bits.v common 2.21 0.01 6260 1 0.01 -1 -1 29716 -1 -1 3 17 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64456 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 0.06 121 0.02 0.00 0.964803 -17.8624 -0.964803 0.964803 0.51 8.0652e-05 6.4023e-05 0.0114702 0.00917797 26 301 16 6.87369e+06 41921.5 503264. 1741.40 0.36 0.0209417 0.0166355 263 13 209 209 13092 4107 0.875073 0.875073 -21.6926 -0.875073 0 0 618332. 2139.56 0.20 0.01 0.00299614 0.00244963 18 -1 10 10 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_009bits.v common 2.20 0.01 6108 1 0.00 -1 -1 29828 -1 -1 3 19 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64316 19 10 69 70 1 45 32 17 17 289 -1 unnamed_device 0.04 131 0.03 0.00 0.975803 -19.8802 -0.975803 0.975803 0.49 8.5337e-05 6.8029e-05 0.011657 0.00928389 32 353 21 6.87369e+06 41921.5 586450. 2029.24 0.43 0.0229272 0.0180448 303 13 187 187 10969 3353 1.13667 1.13667 -25.876 -1.13667 0 0 744469. 2576.02 0.19 0.01 0.00272124 0.00225314 20 -1 11 11 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_010bits.v common 2.03 0.01 6228 1 0.01 -1 -1 29680 -1 -1 3 21 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64508 21 11 76 77 1 48 35 17 17 289 -1 unnamed_device 0.05 140 0.02 0.00 0.986803 -22.5354 -0.986803 0.986803 0.50 9.2604e-05 7.5505e-05 0.00977887 0.0079002 22 598 27 6.87369e+06 41921.5 443629. 1535.05 0.36 0.0227565 0.0182685 451 13 284 284 19762 5898 1.13667 1.13667 -31.7226 -1.13667 0 0 531479. 1839.03 0.12 0.01 0.00289534 0.00239359 22 -1 12 12 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_011bits.v common 2.17 0.02 6164 1 0.00 -1 -1 29724 -1 -1 4 23 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64428 23 12 83 84 1 53 39 17 17 289 -1 unnamed_device 0.04 162 0.03 0.00 0.997803 -24.7005 -0.997803 0.997803 0.49 9.8723e-05 7.9273e-05 0.012897 0.0104313 32 542 17 6.87369e+06 55895.4 586450. 2029.24 0.44 0.0247582 0.0199887 442 19 321 321 27960 6921 1.13667 1.13667 -31.8054 -1.13667 0 0 744469. 2576.02 0.15 0.01 0.00424542 0.00351646 24 -1 13 13 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_012bits.v common 2.17 0.02 6184 1 0.01 -1 -1 29724 -1 -1 4 25 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64508 25 13 90 91 1 60 42 17 17 289 -1 unnamed_device 0.04 180 0.03 0.00 1.0088 -27.0018 -1.0088 1.0088 0.49 0.000105883 8.573e-05 0.0134435 0.0109194 30 510 19 6.87369e+06 55895.4 556674. 1926.21 0.44 0.0267852 0.0217287 424 11 289 289 15202 4426 1.04437 1.04437 -32.9791 -1.04437 0 0 706193. 2443.58 0.14 0.01 0.00294722 0.00248091 26 -1 14 14 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_013bits.v common 2.21 0.02 6316 1 0.01 -1 -1 29744 -1 -1 4 27 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64428 27 14 97 98 1 67 45 17 17 289 -1 unnamed_device 0.04 209 0.03 0.00 1.0198 -29.4395 -1.0198 1.0198 0.49 0.000110922 9.043e-05 0.0146687 0.011999 32 714 24 6.87369e+06 55895.4 586450. 2029.24 0.45 0.0299892 0.0243685 573 14 392 392 30869 8307 1.28397 1.28397 -40.7095 -1.28397 0 0 744469. 2576.02 0.15 0.01 0.00385211 0.00322844 28 -1 15 15 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_014bits.v common 2.30 0.01 6304 1 0.01 -1 -1 29760 -1 -1 4 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64668 29 15 104 105 1 74 48 17 17 289 -1 unnamed_device 0.07 403 0.03 0.00 1.0308 -35.6075 -1.0308 1.0308 0.48 0.00011876 9.6653e-05 0.0144571 0.0118453 32 886 16 6.87369e+06 55895.4 586450. 2029.24 0.43 0.0281473 0.0230666 800 21 473 473 46228 10503 1.19167 1.19167 -46.1666 -1.19167 0 0 744469. 2576.02 0.22 0.02 0.00509146 0.00422217 31 -1 16 16 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_015bits.v common 2.25 0.01 6156 1 0.01 -1 -1 29708 -1 -1 5 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64744 31 16 111 112 1 80 52 17 17 289 -1 unnamed_device 0.15 290 0.04 0.00 1.27683 -33.666 -1.27683 1.27683 0.48 0.000124695 0.000101725 0.0169631 0.0139405 32 854 21 6.87369e+06 69869.2 586450. 2029.24 0.44 0.032427 0.0266325 639 15 420 420 37787 11193 1.32597 1.32597 -45.6223 -1.32597 0 0 744469. 2576.02 0.15 0.01 0.00429357 0.00361817 33 -1 17 17 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_016bits.v common 2.22 0.02 6288 1 0.00 -1 -1 29720 -1 -1 5 33 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64604 33 17 118 119 1 83 55 17 17 289 -1 unnamed_device 0.07 305 0.04 0.00 1.28783 -37.0379 -1.28783 1.28783 0.50 0.000180418 0.000149591 0.0179042 0.0147608 30 788 20 6.87369e+06 69869.2 556674. 1926.21 0.44 0.0341219 0.0280166 654 12 410 410 24955 7142 1.21167 1.21167 -47.1668 -1.21167 0 0 706193. 2443.58 0.14 0.01 0.00396857 0.00337565 34 -1 18 18 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_018bits.v common 2.21 0.01 6280 1 0.01 -1 -1 29836 -1 -1 5 37 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64804 37 19 132 133 1 89 61 17 17 289 -1 unnamed_device 0.06 335 0.05 0.00 1.30983 -42.9835 -1.30983 1.30983 0.49 0.00014454 0.000119105 0.0180616 0.014981 30 1002 31 6.87369e+06 69869.2 556674. 1926.21 0.46 0.0384437 0.0318654 732 16 512 512 34555 8863 1.11467 1.11467 -50.683 -1.11467 0 0 706193. 2443.58 0.15 0.02 0.0052404 0.00441975 38 -1 20 20 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_020bits.v common 2.52 0.01 6264 1 0.01 -1 -1 29872 -1 -1 6 41 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65168 41 21 146 147 1 101 68 17 17 289 -1 unnamed_device 0.07 597 0.07 0.00 1.33183 -54.4862 -1.33183 1.33183 0.50 0.000257759 0.000217791 0.0270329 0.0223535 34 1145 18 6.87369e+06 83843 618332. 2139.56 0.72 0.0587332 0.0485943 1071 16 566 566 50008 11685 1.18067 1.18067 -63.8136 -1.18067 0 0 787024. 2723.27 0.17 0.02 0.00670063 0.00555804 42 -1 22 22 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_022bits.v common 2.36 0.02 6300 1 0.01 -1 -1 29772 -1 -1 6 45 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64652 45 23 160 161 1 115 74 17 17 289 -1 unnamed_device 0.11 503 0.06 0.00 1.41313 -56.3589 -1.41313 1.41313 0.53 0.000173473 0.000146553 0.0222936 0.0186478 30 1327 42 6.87369e+06 83843 556674. 1926.21 0.50 0.0489881 0.041108 1037 13 644 644 50729 12650 1.20267 1.20267 -65.9168 -1.20267 0 0 706193. 2443.58 0.14 0.02 0.00527581 0.00455903 47 -1 24 24 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_024bits.v common 2.37 0.03 6352 1 0.01 -1 -1 29880 -1 -1 7 49 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64892 49 25 174 175 1 124 81 17 17 289 -1 unnamed_device 0.09 547 0.07 0.00 1.61086 -60.8024 -1.61086 1.61086 0.49 0.000177849 0.000150448 0.0241201 0.0202631 30 1328 50 6.87369e+06 97816.9 556674. 1926.21 0.54 0.0558627 0.0470893 1072 15 658 658 48225 12018 1.28667 1.28667 -72.2691 -1.28667 0 0 706193. 2443.58 0.14 0.02 0.00616324 0.00530011 50 -1 26 26 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_028bits.v common 2.77 0.02 6368 1 0.01 -1 -1 29796 -1 -1 8 57 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65308 57 29 202 203 1 142 94 17 17 289 -1 unnamed_device 0.09 713 0.08 0.00 1.65486 -75.2827 -1.65486 1.65486 0.49 0.000207825 0.000176376 0.0280892 0.0237669 34 1665 37 6.87369e+06 111791 618332. 2139.56 0.83 0.0764862 0.064683 1337 17 787 787 67127 15855 1.35267 1.35267 -86.4518 -1.35267 0 0 787024. 2723.27 0.16 0.02 0.00767162 0.0066463 58 -1 30 30 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_032bits.v common 2.72 0.02 6492 1 0.01 -1 -1 29908 -1 -1 9 65 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64868 65 33 230 231 1 165 107 17 17 289 -1 unnamed_device 0.07 834 0.09 0.00 1.93389 -89.9077 -1.93389 1.93389 0.49 0.0002316 0.000197366 0.0326961 0.0277192 34 1859 25 6.87369e+06 125765 618332. 2139.56 0.81 0.0823655 0.0696554 1615 16 925 925 103499 24010 1.43867 1.43867 -101.83 -1.43867 0 0 787024. 2723.27 0.16 0.03 0.00813009 0.00708918 66 -1 34 34 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_048bits.v common 2.90 0.02 6620 1 0.02 -1 -1 30112 -1 -1 13 97 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65656 97 49 342 343 1 247 159 17 17 289 -1 unnamed_device 0.08 1572 0.16 0.00 2.57995 -157.876 -2.57995 2.57995 0.49 0.000336681 0.000292457 0.0457182 0.0395705 34 3279 22 6.87369e+06 181660 618332. 2139.56 0.89 0.118625 0.103014 2851 18 1277 1277 127508 28356 1.67197 1.67197 -168.884 -1.67197 0 0 787024. 2723.27 0.16 0.04 0.0130748 0.0115436 98 -1 50 50 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml adder_064bits.v common 3.75 0.02 6856 1 0.03 -1 -1 30304 -1 -1 17 129 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66364 129 65 454 455 1 329 211 17 17 289 -1 unnamed_device 0.09 1823 0.24 0.00 3.22602 -224.654 -3.22602 3.22602 0.54 0.000443152 0.00039122 0.0617023 0.0538896 34 4706 29 6.87369e+06 237555 618332. 2139.56 1.55 0.170829 0.149639 3640 17 1601 1601 170717 39021 2.20257 2.20257 -251.199 -2.20257 0 0 787024. 2723.27 0.16 0.05 0.0169017 0.0149175 130 -1 66 66 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_003bits.v common 1.99 0.02 6152 1 0.01 -1 -1 29632 -1 -1 1 7 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63528 7 4 27 28 1 13 12 17 17 289 -1 unnamed_device 0.01 24 0.01 0.00 0.480692 -5.65412 -0.480692 0.480692 0.51 4.4726e-05 3.3974e-05 0.00356663 0.00267105 26 62 2 6.89349e+06 14093.8 503264. 1741.40 0.37 0.0127336 0.00938827 56 7 22 22 1079 375 0.74674 0.74674 -6.65652 -0.74674 0 0 618332. 2139.56 0.13 0.00 0.000912239 0.000727523 8 -1 5 5 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_004bits.v common 1.95 0.01 6108 1 0.01 -1 -1 29696 -1 -1 2 9 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64036 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 0.02 39 0.01 0.00 0.663773 -8.00422 -0.663773 0.663773 0.51 5.1193e-05 4.0462e-05 0.00463903 0.00356712 20 132 16 6.89349e+06 28187.7 414966. 1435.87 0.28 0.00676181 0.00519589 125 7 71 71 2539 952 0.914373 0.914373 -10.8861 -0.914373 0 0 503264. 1741.40 0.14 0.00 0.00114344 0.000926048 10 -1 6 6 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_005bits.v common 1.97 0.02 6236 1 0.01 -1 -1 29684 -1 -1 2 11 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63948 11 6 41 42 1 27 19 17 17 289 -1 unnamed_device 0.03 58 0.01 0.00 0.724973 -10.4154 -0.724973 0.724973 0.48 6.2789e-05 4.9173e-05 0.00616413 0.00478933 26 217 26 6.89349e+06 28187.7 503264. 1741.40 0.37 0.0146735 0.0113094 195 19 192 192 10901 3645 1.05067 1.05067 -14.2322 -1.05067 0 0 618332. 2139.56 0.13 0.01 0.00247021 0.00191899 12 -1 7 7 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_006bits.v common 2.09 0.01 6108 1 0.00 -1 -1 29800 -1 -1 2 13 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63964 13 7 48 49 1 33 22 17 17 289 -1 unnamed_device 0.03 81 0.01 0.00 0.746973 -12.756 -0.746973 0.746973 0.49 6.5237e-05 5.1353e-05 0.00500956 0.00397322 30 263 8 6.89349e+06 28187.7 556674. 1926.21 0.41 0.0124686 0.00976124 233 10 141 141 7364 2376 0.936373 0.936373 -17.1449 -0.936373 0 0 706193. 2443.58 0.15 0.01 0.00172554 0.00139534 14 -1 8 8 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_007bits.v common 2.16 0.02 6148 1 0.01 -1 -1 29796 -1 -1 3 15 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64412 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 0.08 110 0.02 0.00 0.971003 -15.8019 -0.971003 0.971003 0.57 7.1612e-05 5.6433e-05 0.00974229 0.00763712 26 306 12 6.89349e+06 42281.5 503264. 1741.40 0.37 0.0181631 0.0140981 274 22 224 224 15506 4837 1.13187 1.13187 -20.8495 -1.13187 0 0 618332. 2139.56 0.13 0.01 0.00327656 0.0025851 17 -1 9 9 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_008bits.v common 2.12 0.02 6244 1 0.00 -1 -1 29640 -1 -1 3 17 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64236 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 0.04 120 0.02 0.00 0.982003 -17.9908 -0.982003 0.982003 0.49 7.9545e-05 6.2885e-05 0.0104623 0.00829876 32 295 14 6.89349e+06 42281.5 586450. 2029.24 0.42 0.0198698 0.015807 236 13 126 126 6967 2321 0.82202 0.82202 -19.6685 -0.82202 0 0 744469. 2576.02 0.15 0.01 0.0023938 0.00195695 18 -1 10 10 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_009bits.v common 2.17 0.02 6060 1 0.01 -1 -1 29704 -1 -1 3 19 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64160 19 10 69 70 1 45 32 17 17 289 -1 unnamed_device 0.04 132 0.02 0.00 0.993003 -20.0258 -0.993003 0.993003 0.48 9.3203e-05 7.5242e-05 0.0112731 0.00901987 32 384 16 6.89349e+06 42281.5 586450. 2029.24 0.42 0.0216585 0.0173805 296 11 162 162 7780 2426 1.12087 1.12087 -25.1785 -1.12087 0 0 744469. 2576.02 0.15 0.01 0.00239013 0.00199065 20 -1 11 11 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_010bits.v common 2.11 0.02 6112 1 0.01 -1 -1 29744 -1 -1 3 21 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64184 21 11 76 77 1 48 35 17 17 289 -1 unnamed_device 0.05 144 0.02 0.00 1.004 -22.3223 -1.004 1.004 0.48 9.3226e-05 7.4321e-05 0.0110623 0.00888861 28 444 27 6.89349e+06 42281.5 531479. 1839.03 0.40 0.0235568 0.0188496 379 9 177 177 11371 3124 1.16487 1.16487 -29.3561 -1.16487 0 0 648988. 2245.63 0.14 0.01 0.00238193 0.00198913 22 -1 12 12 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_011bits.v common 2.21 0.01 6276 1 0.01 -1 -1 29644 -1 -1 4 23 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64572 23 12 83 84 1 53 39 17 17 289 -1 unnamed_device 0.04 153 0.02 0.00 1.015 -25.1311 -1.015 1.015 0.49 0.000101006 8.2533e-05 0.0105424 0.0085574 32 509 15 6.89349e+06 56375.4 586450. 2029.24 0.47 0.0220477 0.0179096 406 11 238 238 14984 4448 1.03337 1.03337 -31.7698 -1.03337 0 0 744469. 2576.02 0.15 0.01 0.00278821 0.00235401 24 -1 13 13 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_012bits.v common 2.17 0.01 6128 1 0.01 -1 -1 29776 -1 -1 4 25 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64168 25 13 90 91 1 60 42 17 17 289 -1 unnamed_device 0.06 182 0.02 0.00 1.026 -26.3219 -1.026 1.026 0.50 0.000104965 8.5714e-05 0.0106933 0.00876665 28 594 16 6.89349e+06 56375.4 531479. 1839.03 0.44 0.0230882 0.0187528 503 14 281 281 18777 5433 1.16967 1.16967 -36.9887 -1.16967 0 0 648988. 2245.63 0.13 0.01 0.00342107 0.00283033 26 -1 14 14 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_013bits.v common 2.30 0.01 6096 1 0.01 -1 -1 29728 -1 -1 4 27 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64516 27 14 97 98 1 67 45 17 17 289 -1 unnamed_device 0.04 209 0.04 0.00 1.037 -29.6539 -1.037 1.037 0.50 0.000110711 8.9836e-05 0.0153536 0.0125428 32 744 23 6.89349e+06 56375.4 586450. 2029.24 0.55 0.0301372 0.0245071 581 10 312 312 23181 6339 1.17587 1.17587 -37.6296 -1.17587 0 0 744469. 2576.02 0.15 0.01 0.00295994 0.00249538 28 -1 15 15 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_014bits.v common 2.53 0.01 6220 1 0.01 -1 -1 29860 -1 -1 4 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64524 29 15 104 105 1 74 48 17 17 289 -1 unnamed_device 0.06 223 0.04 0.00 1.048 -31.0777 -1.048 1.048 0.48 0.000118266 9.6655e-05 0.0159364 0.0130443 36 703 22 6.89349e+06 56375.4 648988. 2245.63 0.81 0.0461662 0.0376471 576 15 438 438 28050 7635 1.19317 1.19317 -38.9764 -1.19317 0 0 828058. 2865.25 0.16 0.01 0.00425519 0.00360543 31 -1 16 16 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_015bits.v common 2.33 0.02 6156 1 0.01 -1 -1 29652 -1 -1 5 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64632 31 16 111 112 1 80 52 17 17 289 -1 unnamed_device 0.13 276 0.04 0.00 1.29403 -34.1654 -1.29403 1.29403 0.48 0.000121367 9.955e-05 0.0158653 0.012994 30 714 12 6.89349e+06 70469.2 556674. 1926.21 0.42 0.0303916 0.0250234 582 17 390 390 26092 7206 1.21787 1.21787 -43.0839 -1.21787 0 0 706193. 2443.58 0.15 0.02 0.00482074 0.00405535 33 -1 17 17 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_016bits.v common 2.31 0.01 6324 1 0.00 -1 -1 29772 -1 -1 5 33 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64708 33 17 118 119 1 83 55 17 17 289 -1 unnamed_device 0.09 345 0.04 0.00 1.30503 -39.3087 -1.30503 1.30503 0.48 0.000130493 0.000105058 0.0173681 0.0142938 28 911 14 6.89349e+06 70469.2 531479. 1839.03 0.50 0.0391736 0.0322435 807 12 401 401 32687 8251 1.33217 1.33217 -51.7529 -1.33217 0 0 648988. 2245.63 0.13 0.01 0.00375941 0.00318734 34 -1 18 18 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_018bits.v common 2.22 0.02 6204 1 0.00 -1 -1 29916 -1 -1 5 37 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64928 37 19 132 133 1 89 61 17 17 289 -1 unnamed_device 0.06 339 0.05 0.00 1.32703 -43.4092 -1.32703 1.32703 0.49 0.000140206 0.000115472 0.0186766 0.0154993 32 981 24 6.89349e+06 70469.2 586450. 2029.24 0.46 0.0370234 0.0307432 808 14 419 419 36882 9206 1.11467 1.11467 -52.776 -1.11467 0 0 744469. 2576.02 0.15 0.01 0.00464076 0.00397084 38 -1 20 20 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_020bits.v common 2.67 0.02 6308 1 0.01 -1 -1 29832 -1 -1 6 41 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65044 41 21 146 147 1 101 68 17 17 289 -1 unnamed_device 0.06 387 0.05 0.00 1.34903 -49.1825 -1.34903 1.34903 0.53 0.00015474 0.000128804 0.0200574 0.0166682 34 1188 18 6.89349e+06 84563 618332. 2139.56 0.71 0.0516834 0.0428844 947 12 518 518 44599 11262 1.27927 1.27927 -60.722 -1.27927 0 0 787024. 2723.27 0.16 0.02 0.00484429 0.00417526 42 -1 22 22 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_022bits.v common 2.38 0.01 6192 1 0.01 -1 -1 29812 -1 -1 6 45 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65152 45 23 160 161 1 115 74 17 17 289 -1 unnamed_device 0.14 725 0.06 0.00 1.37103 -61.8517 -1.37103 1.37103 0.48 0.000167945 0.000140425 0.0217573 0.0182254 30 1423 13 6.89349e+06 84563 556674. 1926.21 0.44 0.040672 0.034165 1263 12 503 503 37568 8479 1.16487 1.16487 -69.2433 -1.16487 0 0 706193. 2443.58 0.20 0.02 0.00520239 0.00452019 47 -1 24 24 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_024bits.v common 2.48 0.02 6416 1 0.01 -1 -1 29792 -1 -1 7 49 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64740 49 25 174 175 1 124 81 17 17 289 -1 unnamed_device 0.06 703 0.07 0.00 1.62806 -67.3457 -1.62806 1.62806 0.48 0.000179493 0.000151077 0.0235492 0.0197561 34 1391 20 6.89349e+06 98656.9 618332. 2139.56 0.69 0.0609231 0.0513061 1294 16 602 602 53571 11859 1.33687 1.33687 -77.447 -1.33687 0 0 787024. 2723.27 0.16 0.02 0.00647471 0.00556979 50 -1 26 26 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_028bits.v common 2.60 0.02 6272 1 0.01 -1 -1 29892 -1 -1 8 57 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65112 57 29 202 203 1 142 94 17 17 289 -1 unnamed_device 0.10 799 0.07 0.00 1.67206 -79.3888 -1.67206 1.67206 0.48 0.000203212 0.000173664 0.0269774 0.0229023 34 1741 18 6.89349e+06 112751 618332. 2139.56 0.72 0.0683166 0.0577572 1484 13 684 684 70807 15659 1.34797 1.34797 -88.684 -1.34797 0 0 787024. 2723.27 0.16 0.02 0.00628032 0.00546365 58 -1 30 30 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_032bits.v common 2.62 0.01 6516 1 0.01 -1 -1 29852 -1 -1 9 65 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64480 65 33 230 231 1 165 107 17 17 289 -1 unnamed_device 0.07 977 0.09 0.00 1.95109 -94.4586 -1.95109 1.95109 0.48 0.000227999 0.000194072 0.0307487 0.0261548 34 1960 19 6.89349e+06 126845 618332. 2139.56 0.73 0.0778222 0.0661746 1738 14 741 741 66270 14998 1.35462 1.35462 -103.345 -1.35462 0 0 787024. 2723.27 0.16 0.02 0.00782069 0.0068379 66 -1 34 34 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_048bits.v common 2.80 0.01 6648 1 0.01 -1 -1 30196 -1 -1 13 97 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65444 97 49 342 343 1 247 159 17 17 289 -1 unnamed_device 0.07 1481 0.16 0.00 2.59715 -157.439 -2.59715 2.59715 0.49 0.000330158 0.000286501 0.0450613 0.0390134 34 3026 21 6.89349e+06 183220 618332. 2139.56 0.81 0.115299 0.100051 2727 16 1025 1025 103368 22673 1.64997 1.64997 -164.23 -1.64997 0 0 787024. 2723.27 0.16 0.03 0.0118596 0.0105566 98 -1 50 50 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml adder_064bits.v common 3.64 0.02 6808 1 0.02 -1 -1 30392 -1 -1 17 129 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66536 129 65 454 455 1 329 211 17 17 289 -1 unnamed_device 0.09 1845 0.24 0.00 3.24322 -227.249 -3.24322 3.24322 0.54 0.000523751 0.000467586 0.0631629 0.0553011 34 4619 28 6.89349e+06 239595 618332. 2139.56 1.47 0.17001 0.1491 3667 15 1462 1462 160581 34176 1.76462 1.76462 -218.795 -1.76462 0 0 787024. 2723.27 0.16 0.05 0.0150903 0.013459 130 -1 66 66 0 0
diff --git a/vtr_flow/tasks/arithmetic_tasks/multless_consts/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/multless_consts/config/config.txt
similarity index 93%
rename from vtr_flow/tasks/arithmetic_tasks/multless_consts/config/config.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/multless_consts/config/config.txt
index 57cd80080fd..37f1c2cc28d 100644
--- a/vtr_flow/tasks/arithmetic_tasks/multless_consts/config/config.txt
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/multless_consts/config/config.txt
@@ -142,8 +142,11 @@ circuit_list_add=mult_128.v
# Add architectures to list to sweep
arch_list_add=fixed_k6_N8_gate_boost_0.2V_22nm.xml
-arch_list_add=fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml
-arch_list_add=fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml
+
+#Lookahead architectures fail in vpr at the packing stage after removing unused inputs.
+#arch_list_add=fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml
+#arch_list_add=fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml
+
arch_list_add=fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml
arch_list_add=fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml
arch_list_add=fixed_k6_frac_2ripple_N8_22nm.xml
@@ -155,6 +158,9 @@ arch_list_add=fixed_k6_frac_uripple_N8_22nm.xml
# Parse info and how to parse
parse_file=vpr_chain.txt
+# How to parse QoR info
+qor_parse_file=qor_standard.txt
+
# Pass requirements
pass_requirements_file=pass_requirements_chain.txt
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
new file mode 100644
index 00000000000..aec2a8e94e1
--- /dev/null
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/multless_consts/config/golden_results.txt
@@ -0,0 +1,1025 @@
+ 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
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common 5.26 0.02 6964 14 0.20 -1 -1 33008 -1 -1 26 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65152 32 32 280 312 1 204 90 17 17 289 -1 unnamed_device 0.20 1090 0.12 0.00 6.5589 -123.745 -6.5589 6.5589 0.53 0.000361569 0.000313968 0.050692 0.0429327 36 2976 26 6.55708e+06 313430 612192. 2118.31 2.88 0.152805 0.13039 2476 28 1730 5597 398493 128752 6.9221 6.9221 -147.352 -6.9221 0 0 782063. 2706.10 0.16 0.09 0.0246308 0.0217896 186 185 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 3.60 0.02 7008 14 0.24 -1 -1 32448 -1 -1 30 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65056 30 32 277 309 1 214 92 17 17 289 -1 unnamed_device 0.35 1264 0.11 0.00 6.78504 -135.691 -6.78504 6.78504 0.46 0.000357448 0.000309764 0.0442622 0.0370296 32 3667 40 6.55708e+06 361650 554710. 1919.41 0.80 0.1095 0.0934911 3019 69 2926 9779 1306709 666384 7.30764 7.30764 -156.1 -7.30764 0 0 701300. 2426.64 0.17 0.39 0.0701947 0.0617858 189 186 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 3.96 0.03 6952 11 0.17 -1 -1 32652 -1 -1 25 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65172 32 32 274 306 1 208 89 17 17 289 -1 unnamed_device 0.32 1315 0.11 0.00 5.56972 -117.95 -5.56972 5.56972 0.47 0.000353293 0.000306047 0.0428092 0.0358221 36 3346 17 6.55708e+06 301375 612192. 2118.31 1.59 0.128684 0.109532 2872 18 1286 4321 246995 56440 5.84932 5.84932 -135.132 -5.84932 0 0 782063. 2706.10 0.16 0.05 0.017253 0.0154937 180 179 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 5.50 0.02 6900 12 0.29 -1 -1 32632 -1 -1 29 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65640 29 32 269 301 1 203 90 17 17 289 -1 unnamed_device 0.29 1104 0.12 0.00 6.34544 -115.686 -6.34544 6.34544 0.54 0.000360823 0.000312255 0.047982 0.0402853 36 3578 36 6.55708e+06 349595 612192. 2118.31 2.95 0.179596 0.153827 2730 18 1410 4391 240003 58232 6.70604 6.70604 -135.835 -6.70604 0 0 782063. 2706.10 0.16 0.05 0.017968 0.0161138 185 180 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 4.09 0.02 6856 13 0.26 -1 -1 33108 -1 -1 34 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65624 32 32 317 349 1 247 98 17 17 289 -1 unnamed_device 0.33 1593 0.16 0.00 6.35004 -132.511 -6.35004 6.35004 0.48 0.000407204 0.000351958 0.0644527 0.0542158 30 4686 42 6.55708e+06 409870 526063. 1820.29 1.54 0.145994 0.12442 3464 17 1678 4896 266354 62066 6.87004 6.87004 -154.17 -6.87004 0 0 666494. 2306.21 0.15 0.06 0.020113 0.0181371 223 222 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 5.22 0.02 6988 12 0.20 -1 -1 32540 -1 -1 34 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65160 32 32 299 331 1 232 98 17 17 289 -1 unnamed_device 0.39 1470 0.14 0.00 5.99204 -123.594 -5.99204 5.99204 0.47 0.000378721 0.000326908 0.056183 0.0473985 36 3869 48 6.55708e+06 409870 612192. 2118.31 2.61 0.172385 0.147402 3169 39 1386 4468 504544 215109 6.3231 6.3231 -142.77 -6.3231 0 0 782063. 2706.10 0.16 0.13 0.0331781 0.0293981 209 204 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 3.46 0.02 6700 12 0.16 -1 -1 32196 -1 -1 27 27 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65056 27 32 210 242 1 167 86 17 17 289 -1 unnamed_device 0.21 971 0.10 0.00 5.89678 -107.416 -5.89678 5.89678 0.47 0.000291292 0.000250874 0.0399722 0.0335213 28 2946 48 6.55708e+06 325485 500653. 1732.36 1.18 0.0982051 0.0838949 2384 42 1128 3493 563505 291721 6.25738 6.25738 -125.417 -6.25738 0 0 612192. 2118.31 0.13 0.14 0.0258995 0.022734 136 125 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 6.14 0.02 6988 11 0.19 -1 -1 32664 -1 -1 28 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65224 31 32 264 296 1 200 91 17 17 289 -1 unnamed_device 0.26 1167 0.14 0.00 5.38078 -109.227 -5.38078 5.38078 0.58 0.000330921 0.000284406 0.0571167 0.0474529 36 3182 36 6.55708e+06 337540 612192. 2118.31 3.52 0.169961 0.144059 2629 32 1246 4052 416376 168684 5.62118 5.62118 -127.716 -5.62118 0 0 782063. 2706.10 0.16 0.10 0.0245366 0.0216183 175 171 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 3.16 0.03 6772 12 0.18 -1 -1 32168 -1 -1 25 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64964 31 32 234 266 1 190 88 17 17 289 -1 unnamed_device 0.29 1157 0.11 0.00 5.66098 -121.179 -5.66098 5.66098 0.48 0.00033089 0.000285786 0.0428234 0.0358008 32 3133 45 6.55708e+06 301375 554710. 1919.41 0.82 0.101749 0.0870112 2685 20 1118 2990 303649 102234 5.78318 5.78318 -137.861 -5.78318 0 0 701300. 2426.64 0.15 0.07 0.0157767 0.0140569 145 141 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 4.01 0.03 6704 13 0.15 -1 -1 32552 -1 -1 25 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64824 32 32 253 285 1 194 89 17 17 289 -1 unnamed_device 0.24 1131 0.14 0.00 6.22784 -133.447 -6.22784 6.22784 0.50 0.000333273 0.000286936 0.0587067 0.0497968 36 3019 24 6.55708e+06 301375 612192. 2118.31 1.42 0.142004 0.121598 2489 16 1079 2981 173518 41269 6.73558 6.73558 -155.622 -6.73558 0 0 782063. 2706.10 0.16 0.04 0.015226 0.0137438 162 158 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 3.18 0.02 6808 12 0.15 -1 -1 32428 -1 -1 22 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64948 30 32 217 249 1 169 84 17 17 289 -1 unnamed_device 0.27 901 0.10 0.00 6.10964 -119.164 -6.10964 6.10964 0.51 0.000296853 0.000254745 0.0430479 0.0363719 28 2831 48 6.55708e+06 265210 500653. 1732.36 0.93 0.1003 0.085476 2202 16 963 2364 139131 33674 6.22984 6.22984 -139.9 -6.22984 0 0 612192. 2118.31 0.14 0.04 0.0127655 0.0114286 130 126 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 3.75 0.03 6816 12 0.15 -1 -1 32260 -1 -1 21 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64940 32 32 227 259 1 176 85 17 17 289 -1 unnamed_device 0.24 1000 0.10 0.00 5.57738 -120.852 -5.57738 5.57738 0.53 0.000305845 0.000261795 0.0420112 0.0352921 28 3402 36 6.55708e+06 253155 500653. 1732.36 1.49 0.0983948 0.0836356 2468 27 1074 2804 236337 72887 6.01898 6.01898 -145.075 -6.01898 0 0 612192. 2118.31 0.13 0.06 0.0188575 0.0167084 138 132 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 4.27 0.02 6880 13 0.25 -1 -1 32768 -1 -1 30 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65588 32 32 306 338 1 235 94 17 17 289 -1 unnamed_device 0.27 1405 0.14 0.00 6.4799 -132.734 -6.4799 6.4799 0.48 0.000398118 0.000342444 0.0592766 0.0498963 36 3403 19 6.55708e+06 361650 612192. 2118.31 1.75 0.158237 0.135064 2925 16 1383 4036 226403 54202 6.85276 6.85276 -152.582 -6.85276 0 0 782063. 2706.10 0.18 0.10 0.0324293 0.0288227 212 211 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 6.40 0.02 6880 14 0.32 -1 -1 32892 -1 -1 29 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65512 32 32 302 334 1 235 93 17 17 289 -1 unnamed_device 0.48 1296 0.13 0.00 7.16556 -145.099 -7.16556 7.16556 0.47 0.000433125 0.000364629 0.0527494 0.0439233 36 4131 41 6.55708e+06 349595 612192. 2118.31 3.69 0.169857 0.143737 2931 23 1527 4400 296506 89770 7.44716 7.44716 -166.013 -7.44716 0 0 782063. 2706.10 0.16 0.07 0.0236721 0.0212042 208 207 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 4.09 0.03 6692 11 0.15 -1 -1 32280 -1 -1 29 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65204 29 32 238 270 1 186 90 17 17 289 -1 unnamed_device 0.23 863 0.09 0.00 5.44752 -101.885 -5.44752 5.44752 0.47 0.000303609 0.000262103 0.0358837 0.0300988 36 2475 24 6.55708e+06 349595 612192. 2118.31 1.80 0.146366 0.125781 1995 19 1047 2872 167872 42672 5.68792 5.68792 -118.623 -5.68792 0 0 782063. 2706.10 0.16 0.04 0.0152402 0.0136675 160 149 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 4.05 0.01 6948 12 0.26 -1 -1 32812 -1 -1 34 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65688 32 32 306 338 1 235 98 17 17 289 -1 unnamed_device 0.43 1467 0.15 0.00 6.4825 -134.257 -6.4825 6.4825 0.48 0.000400675 0.000339399 0.0578607 0.0484579 40 3373 17 6.55708e+06 409870 666494. 2306.21 1.38 0.153709 0.131626 3250 18 1442 4585 275950 63245 6.6027 6.6027 -147.628 -6.6027 0 0 872365. 3018.56 0.18 0.06 0.0205566 0.0184917 213 211 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 4.15 0.03 6944 13 0.24 -1 -1 32644 -1 -1 32 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65764 32 32 311 343 1 239 96 17 17 289 -1 unnamed_device 0.25 1335 0.12 0.00 6.5961 -137.184 -6.5961 6.5961 0.47 0.000421608 0.000343164 0.0466335 0.0389874 36 3620 49 6.55708e+06 385760 612192. 2118.31 1.73 0.176112 0.150992 2876 17 1301 3823 202061 49695 6.81156 6.81156 -155.056 -6.81156 0 0 782063. 2706.10 0.16 0.05 0.0191512 0.0173205 217 216 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 3.23 0.03 6744 12 0.12 -1 -1 32568 -1 -1 22 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65064 32 32 230 262 1 180 86 17 17 289 -1 unnamed_device 0.40 962 0.12 0.00 5.9991 -130.727 -5.9991 5.9991 0.47 0.000354528 0.000300635 0.0490245 0.0410481 30 2614 46 6.55708e+06 265210 526063. 1820.29 0.89 0.113877 0.0972781 2068 14 911 2740 128193 32603 6.3205 6.3205 -150.053 -6.3205 0 0 666494. 2306.21 0.14 0.03 0.0131166 0.011843 139 135 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 2.62 0.02 6508 10 0.07 -1 -1 32268 -1 -1 20 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64308 30 32 176 208 1 139 82 17 17 289 -1 unnamed_device 0.10 737 0.08 0.00 4.2694 -95.2326 -4.2694 4.2694 0.53 0.000231801 0.00019717 0.0327472 0.0275344 30 1921 33 6.55708e+06 241100 526063. 1820.29 0.69 0.0753128 0.0642912 1587 15 678 1752 88272 21810 4.76446 4.76446 -110.995 -4.76446 0 0 666494. 2306.21 0.14 0.02 0.00913784 0.00815098 96 85 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 3.13 0.02 6876 13 0.13 -1 -1 32516 -1 -1 24 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65220 31 32 226 258 1 176 87 17 17 289 -1 unnamed_device 0.30 1000 0.11 0.00 6.10764 -128.526 -6.10764 6.10764 0.48 0.000309147 0.000268079 0.0447618 0.0379602 30 2677 40 6.55708e+06 289320 526063. 1820.29 0.80 0.0998579 0.0855548 2115 16 961 2454 123713 31929 6.46824 6.46824 -145.006 -6.46824 0 0 666494. 2306.21 0.17 0.04 0.0165793 0.0148522 139 133 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 4.17 0.02 6872 13 0.23 -1 -1 32680 -1 -1 31 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65216 32 32 302 334 1 228 95 17 17 289 -1 unnamed_device 0.29 1286 0.12 0.00 6.22984 -127.007 -6.22984 6.22984 0.49 0.000388574 0.000335905 0.0468403 0.038918 34 4397 42 6.55708e+06 373705 585099. 2024.56 1.68 0.159217 0.135039 3409 25 1951 6469 421510 105721 6.99024 6.99024 -156.026 -6.99024 0 0 742403. 2568.87 0.16 0.08 0.0240936 0.0213729 208 207 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 5.06 0.02 6960 13 0.27 -1 -1 32716 -1 -1 34 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65392 32 32 299 331 1 237 98 17 17 289 -1 unnamed_device 0.40 1535 0.16 0.00 6.5563 -137.289 -6.5563 6.5563 0.47 0.000382615 0.000332076 0.0613187 0.0514237 38 4005 45 6.55708e+06 409870 638502. 2209.35 2.43 0.18189 0.154653 2939 15 1365 4227 220663 50299 6.6765 6.6765 -152.599 -6.6765 0 0 851065. 2944.86 0.17 0.05 0.0180481 0.0163731 207 204 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 3.16 0.01 6616 9 0.05 -1 -1 31816 -1 -1 21 26 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64500 26 32 149 181 1 119 79 17 17 289 -1 unnamed_device 0.26 696 0.07 0.00 3.82014 -77.6723 -3.82014 3.82014 0.46 0.000211266 0.000173846 0.0263727 0.0219538 26 2004 40 6.55708e+06 253155 477104. 1650.88 1.10 0.0642214 0.0540167 1706 36 689 1807 298187 147121 3.94034 3.94034 -91.5537 -3.94034 0 0 585099. 2024.56 0.13 0.08 0.0157916 0.0137858 83 66 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 4.51 0.02 6892 13 0.26 -1 -1 32672 -1 -1 30 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65420 32 32 304 336 1 228 94 17 17 289 -1 unnamed_device 0.20 1342 0.14 0.00 6.5609 -126.175 -6.5609 6.5609 0.47 0.00039041 0.000338274 0.0561453 0.0472864 36 4063 30 6.55708e+06 361650 612192. 2118.31 2.04 0.161242 0.137288 2864 19 1379 3811 204346 49895 6.65156 6.65156 -146.132 -6.65156 0 0 782063. 2706.10 0.22 0.05 0.0197148 0.0177387 211 209 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 2.53 0.02 6472 8 0.07 -1 -1 31972 -1 -1 21 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65100 32 32 155 187 1 127 85 17 17 289 -1 unnamed_device 0.13 789 0.06 0.00 3.94034 -87.8119 -3.94034 3.94034 0.52 0.00020382 0.000172766 0.0216455 0.0180499 28 1960 21 6.55708e+06 253155 500653. 1732.36 0.60 0.0497592 0.042033 1764 28 626 1478 215561 105574 4.06054 4.06054 -102.897 -4.06054 0 0 612192. 2118.31 0.13 0.06 0.0122503 0.0106765 81 60 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 3.99 0.02 6920 15 0.22 -1 -1 32760 -1 -1 25 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65408 32 32 253 285 1 192 89 17 17 289 -1 unnamed_device 0.24 1029 0.14 0.00 7.00876 -135.002 -7.00876 7.00876 0.50 0.00054565 0.000439096 0.0564788 0.0463944 36 2806 25 6.55708e+06 301375 612192. 2118.31 1.48 0.178407 0.152759 2298 15 1058 3146 175003 42237 7.64895 7.64895 -151.527 -7.64895 0 0 782063. 2706.10 0.16 0.04 0.0151137 0.0136381 161 158 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 4.43 0.02 6980 12 0.25 -1 -1 32608 -1 -1 31 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65876 32 32 309 341 1 232 95 17 17 289 -1 unnamed_device 0.19 1327 0.12 0.00 5.85958 -121.12 -5.85958 5.85958 0.47 0.000411401 0.000338068 0.0486243 0.0402641 34 4285 46 6.55708e+06 373705 585099. 2024.56 2.04 0.166062 0.14102 3264 29 1663 5411 404963 124097 6.20086 6.20086 -139.446 -6.20086 0 0 742403. 2568.87 0.15 0.09 0.0265961 0.0236763 218 214 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 4.24 0.03 6952 13 0.26 -1 -1 32552 -1 -1 28 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65088 32 32 289 321 1 218 92 17 17 289 -1 unnamed_device 0.32 1427 0.11 0.00 6.19064 -128.998 -6.19064 6.19064 0.53 0.00037874 0.000315364 0.0455741 0.0381248 28 4352 46 6.55708e+06 337540 500653. 1732.36 1.72 0.12008 0.101868 3564 18 1632 4932 328976 73976 6.67144 6.67144 -157.318 -6.67144 0 0 612192. 2118.31 0.14 0.07 0.0190057 0.0169956 196 194 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 3.01 0.02 6720 12 0.13 -1 -1 32788 -1 -1 22 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64952 32 32 239 271 1 188 86 17 17 289 -1 unnamed_device 0.20 1162 0.10 0.00 5.36652 -120.939 -5.36652 5.36652 0.50 0.000308653 0.000265617 0.0414039 0.0347825 30 2790 18 6.55708e+06 265210 526063. 1820.29 0.74 0.0892807 0.0763061 2324 16 993 2688 130450 31603 5.48672 5.48672 -134.446 -5.48672 0 0 666494. 2306.21 0.15 0.04 0.0139749 0.0125562 146 144 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 3.05 0.02 6744 11 0.13 -1 -1 32484 -1 -1 23 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64736 30 32 213 245 1 162 85 17 17 289 -1 unnamed_device 0.21 847 0.12 0.00 5.20912 -106.648 -5.20912 5.20912 0.48 0.00033707 0.000285074 0.0510177 0.0426969 32 2824 40 6.55708e+06 277265 554710. 1919.41 0.89 0.110263 0.0934713 2182 14 1005 2675 179657 44413 5.53052 5.53052 -125.549 -5.53052 0 0 701300. 2426.64 0.15 0.04 0.011428 0.0102445 128 122 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 3.54 0.02 6748 11 0.13 -1 -1 32628 -1 -1 27 28 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65128 28 32 221 253 1 183 87 17 17 289 -1 unnamed_device 0.21 975 0.12 0.00 5.60892 -108.907 -5.60892 5.60892 0.47 0.000295352 0.000253111 0.0459539 0.0385737 38 2447 25 6.55708e+06 325485 638502. 2209.35 1.24 0.122357 0.104382 2016 15 901 2619 129070 31260 6.02098 6.02098 -119.45 -6.02098 0 0 851065. 2944.86 0.17 0.04 0.0129864 0.0116671 142 134 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 4.19 0.01 6768 12 0.15 -1 -1 32400 -1 -1 28 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65228 32 32 273 305 1 210 92 17 17 289 -1 unnamed_device 0.20 1253 0.14 0.00 5.86924 -132.233 -5.86924 5.86924 0.49 0.000345247 0.000296567 0.0547329 0.0461777 30 3549 36 6.55708e+06 337540 526063. 1820.29 1.87 0.121632 0.103477 2712 27 1307 3467 269302 93564 6.25938 6.25938 -152.145 -6.25938 0 0 666494. 2306.21 0.14 0.07 0.0217074 0.0192702 180 178 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 3.22 0.02 6772 11 0.17 -1 -1 32944 -1 -1 23 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65424 31 32 238 270 1 182 86 17 17 289 -1 unnamed_device 0.27 1136 0.11 0.00 5.44692 -117.5 -5.44692 5.44692 0.48 0.000314513 0.000271364 0.0450501 0.0375356 28 3097 34 6.55708e+06 277265 500653. 1732.36 0.94 0.100447 0.0850375 2631 24 1186 3197 271133 89709 5.71486 5.71486 -140.627 -5.71486 0 0 612192. 2118.31 0.14 0.07 0.0189115 0.0168106 147 145 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 3.31 0.03 6832 10 0.11 -1 -1 32576 -1 -1 26 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64788 29 32 221 253 1 164 87 17 17 289 -1 unnamed_device 0.26 916 0.13 0.00 5.02418 -100.976 -5.02418 5.02418 0.49 0.000315348 0.000245956 0.0524699 0.043904 30 2458 50 6.55708e+06 313430 526063. 1820.29 1.05 0.110841 0.0940012 1945 16 857 2571 121723 29974 5.26458 5.26458 -115.043 -5.26458 0 0 666494. 2306.21 0.14 0.03 0.0129784 0.0116648 139 132 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 4.57 0.02 7060 13 0.28 -1 -1 33120 -1 -1 33 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65816 32 32 333 365 1 249 97 17 17 289 -1 unnamed_device 0.28 1514 0.15 0.00 6.2003 -128.532 -6.2003 6.2003 0.47 0.000418204 0.000362261 0.061827 0.0517761 36 3995 27 6.55708e+06 397815 612192. 2118.31 1.96 0.179278 0.153062 3211 17 1345 4474 252464 58548 6.74984 6.74984 -145.793 -6.74984 0 0 782063. 2706.10 0.16 0.06 0.0212152 0.0191568 239 238 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 5.15 0.02 6944 13 0.25 -1 -1 33312 -1 -1 30 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65652 32 32 297 329 1 228 94 17 17 289 -1 unnamed_device 0.38 1290 0.17 0.00 6.5197 -138.004 -6.5197 6.5197 0.47 0.000400793 0.000336386 0.0694011 0.0581664 36 3724 31 6.55708e+06 361650 612192. 2118.31 2.53 0.176159 0.149293 3008 17 1358 4173 231946 56369 7.0005 7.0005 -159.007 -7.0005 0 0 782063. 2706.10 0.17 0.05 0.0201644 0.0182421 203 202 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 3.94 0.03 6716 12 0.11 -1 -1 32320 -1 -1 25 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65072 31 32 234 266 1 181 88 17 17 289 -1 unnamed_device 0.25 930 0.09 0.00 5.70218 -116.819 -5.70218 5.70218 0.47 0.000299862 0.000257555 0.0369176 0.0309607 36 2752 32 6.55708e+06 301375 612192. 2118.31 1.74 0.116186 0.0989973 2091 17 988 2717 145581 35874 5.82238 5.82238 -132.221 -5.82238 0 0 782063. 2706.10 0.18 0.04 0.0151937 0.0136093 150 141 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 4.67 0.03 7008 12 0.22 -1 -1 32788 -1 -1 34 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65328 31 32 310 342 1 234 97 17 17 289 -1 unnamed_device 0.26 1359 0.14 0.00 6.6373 -134.867 -6.6373 6.6373 0.48 0.000393635 0.000339789 0.0579064 0.0484686 38 3652 33 6.55708e+06 409870 638502. 2209.35 2.26 0.167658 0.142671 2794 16 1367 4230 224704 52936 6.6373 6.6373 -146.568 -6.6373 0 0 851065. 2944.86 0.17 0.05 0.0182786 0.0165355 219 217 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 4.07 0.02 7060 14 0.42 -1 -1 32792 -1 -1 28 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65192 31 32 284 316 1 219 91 17 17 289 -1 unnamed_device 0.20 1237 0.14 0.00 6.80696 -128.807 -6.80696 6.80696 0.47 0.000391482 0.000336438 0.0569715 0.0478487 40 2872 50 6.55708e+06 337540 666494. 2306.21 1.48 0.17172 0.147061 2700 19 1425 4168 233793 56872 7.1161 7.1161 -149.497 -7.1161 0 0 872365. 3018.56 0.18 0.05 0.0196457 0.0176462 194 191 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 3.60 0.03 7020 13 0.21 -1 -1 32728 -1 -1 29 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65436 31 32 271 303 1 210 92 17 17 289 -1 unnamed_device 0.22 1259 0.11 0.00 6.2787 -124.126 -6.2787 6.2787 0.52 0.000352667 0.000306044 0.0435373 0.0364847 36 3151 31 6.55708e+06 349595 612192. 2118.31 1.23 0.133797 0.114092 2765 16 1252 3399 182803 43748 6.5191 6.5191 -144.126 -6.5191 0 0 782063. 2706.10 0.16 0.04 0.0166322 0.0150133 183 178 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 4.16 0.03 6960 12 0.21 -1 -1 32828 -1 -1 30 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65708 31 32 280 312 1 211 93 17 17 289 -1 unnamed_device 0.42 1389 0.19 0.00 5.71184 -120.075 -5.71184 5.71184 0.52 0.000400935 0.000321342 0.0774897 0.0641639 36 3474 22 6.55708e+06 361650 612192. 2118.31 1.53 0.169593 0.143365 3038 16 1211 3965 238043 52971 6.03324 6.03324 -136.385 -6.03324 0 0 782063. 2706.10 0.16 0.05 0.0170203 0.0153742 189 187 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 3.31 0.03 7032 12 0.16 -1 -1 32508 -1 -1 24 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64992 32 32 264 296 1 194 88 17 17 289 -1 unnamed_device 0.25 1211 0.12 0.00 5.8025 -122.463 -5.8025 5.8025 0.49 0.000337916 0.000291721 0.0480235 0.0401519 28 3437 42 6.55708e+06 289320 500653. 1732.36 1.02 0.113176 0.0964058 2778 17 1152 3366 198180 46577 6.2833 6.2833 -146.214 -6.2833 0 0 612192. 2118.31 0.13 0.05 0.0158383 0.0142039 172 169 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 6.32 0.03 7132 14 0.40 -1 -1 32616 -1 -1 35 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65972 32 32 339 371 1 259 99 17 17 289 -1 unnamed_device 0.29 1641 0.14 0.00 6.8411 -143.283 -6.8411 6.8411 0.48 0.000463889 0.000374695 0.0543252 0.0449681 38 4522 45 6.55708e+06 421925 638502. 2209.35 3.63 0.236271 0.203811 3335 17 1580 5585 296372 68238 6.8411 6.8411 -155.344 -6.8411 0 0 851065. 2944.86 0.17 0.06 0.0252548 0.0230427 245 244 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 3.31 0.02 6804 11 0.17 -1 -1 32456 -1 -1 26 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65176 31 32 246 278 1 188 89 17 17 289 -1 unnamed_device 0.22 1063 0.11 0.00 5.34158 -110.355 -5.34158 5.34158 0.47 0.000346788 0.00028238 0.0447696 0.0371886 30 3045 32 6.55708e+06 313430 526063. 1820.29 1.06 0.123482 0.105675 2464 17 1204 3472 189677 45353 5.57938 5.57938 -128.693 -5.57938 0 0 666494. 2306.21 0.15 0.05 0.0156061 0.0140155 160 153 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 4.75 0.02 7032 13 0.22 -1 -1 32576 -1 -1 27 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65300 31 32 268 300 1 203 90 17 17 289 -1 unnamed_device 0.34 1193 0.13 0.00 6.52936 -126.49 -6.52936 6.52936 0.47 0.000357172 0.000308622 0.0540321 0.0449829 36 3586 40 6.55708e+06 325485 612192. 2118.31 2.22 0.157488 0.133584 2773 19 1402 4439 256160 59762 6.94904 6.94904 -146.386 -6.94904 0 0 782063. 2706.10 0.19 0.06 0.0207839 0.0185912 177 175 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 6.65 0.02 6896 12 0.21 -1 -1 32692 -1 -1 34 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65072 32 32 318 350 1 231 98 17 17 289 -1 unnamed_device 0.32 1355 0.12 0.00 5.94764 -125.276 -5.94764 5.94764 0.46 0.000412701 0.000340078 0.0489469 0.0405516 36 4331 48 6.55708e+06 409870 612192. 2118.31 4.14 0.176087 0.149103 3115 23 1494 5167 315758 84729 6.54864 6.54864 -153.056 -6.54864 0 0 782063. 2706.10 0.16 0.07 0.0239467 0.0213723 227 223 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 3.77 0.03 6900 13 0.19 -1 -1 32664 -1 -1 28 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65228 32 32 273 305 1 205 92 17 17 289 -1 unnamed_device 0.16 1084 0.11 0.00 6.54664 -129.943 -6.54664 6.54664 0.50 0.000353989 0.000307692 0.0433145 0.036206 34 3435 50 6.55708e+06 337540 585099. 2024.56 1.40 0.153732 0.131521 2634 17 1306 3685 210980 53577 6.90724 6.90724 -153.065 -6.90724 0 0 742403. 2568.87 0.22 0.05 0.0174875 0.0157562 184 178 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 4.22 0.02 6912 13 0.22 -1 -1 32652 -1 -1 25 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65112 32 32 269 301 1 197 89 17 17 289 -1 unnamed_device 0.26 1201 0.12 0.00 6.0827 -128.944 -6.0827 6.0827 0.47 0.000350749 0.000302104 0.0500846 0.0423435 28 3702 44 6.55708e+06 301375 500653. 1732.36 1.89 0.120925 0.103043 2904 18 1364 4179 274944 63415 6.55124 6.55124 -156.257 -6.55124 0 0 612192. 2118.31 0.13 0.06 0.0173383 0.0154545 175 174 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 4.98 0.02 6956 12 0.24 -1 -1 33064 -1 -1 31 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65724 32 32 298 330 1 223 95 17 17 289 -1 unnamed_device 0.56 1346 0.14 0.00 6.09538 -131.516 -6.09538 6.09538 0.47 0.000408638 0.000335014 0.0555211 0.0456237 36 3537 40 6.55708e+06 373705 612192. 2118.31 2.23 0.165325 0.140423 2867 14 1203 4154 220605 51072 6.45598 6.45598 -149.507 -6.45598 0 0 782063. 2706.10 0.16 0.05 0.0168914 0.0153326 205 203 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 5.57 0.02 6968 13 0.23 -1 -1 32608 -1 -1 29 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65284 32 32 299 331 1 235 93 17 17 289 -1 unnamed_device 0.35 1307 0.15 0.00 6.22984 -126.44 -6.22984 6.22984 0.62 0.000573477 0.000489917 0.0612964 0.050707 38 3342 25 6.55708e+06 349595 638502. 2209.35 2.75 0.221253 0.190855 2649 17 1380 4187 200559 48926 6.6811 6.6811 -145.877 -6.6811 0 0 851065. 2944.86 0.17 0.05 0.0209873 0.0191017 205 204 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 4.47 0.04 6980 14 0.21 -1 -1 32660 -1 -1 25 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65408 32 32 259 291 1 193 89 17 17 289 -1 unnamed_device 0.34 1136 0.11 0.00 6.54724 -132.058 -6.54724 6.54724 0.47 0.000349121 0.000299601 0.0472936 0.0397786 38 3028 31 6.55708e+06 301375 638502. 2209.35 2.05 0.138639 0.118267 2379 20 1178 3706 187106 48033 6.8365 6.8365 -146.324 -6.8365 0 0 851065. 2944.86 0.17 0.05 0.0178893 0.0160659 167 164 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 3.42 0.02 6876 13 0.26 -1 -1 32840 -1 -1 29 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65308 32 32 293 325 1 225 93 17 17 289 -1 unnamed_device 0.49 1485 0.11 0.00 7.0397 -141.935 -7.0397 7.0397 0.49 0.000370034 0.000320052 0.0450938 0.0378636 30 3739 27 6.55708e+06 349595 526063. 1820.29 0.78 0.105466 0.0900854 3109 18 1384 3920 196147 46464 7.37076 7.37076 -158.193 -7.37076 0 0 666494. 2306.21 0.14 0.05 0.0182487 0.0164129 200 198 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 4.17 0.03 7008 13 0.23 -1 -1 32800 -1 -1 32 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65664 31 32 311 343 1 231 95 17 17 289 -1 unnamed_device 0.25 1392 0.12 0.00 7.00816 -141.467 -7.00816 7.00816 0.47 0.000393874 0.000342191 0.0486438 0.0407645 34 4290 38 6.55708e+06 385760 585099. 2024.56 1.79 0.163578 0.140002 3232 20 1515 4807 279290 64554 7.60916 7.60916 -160.723 -7.60916 0 0 742403. 2568.87 0.15 0.06 0.0214761 0.0192832 221 218 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 4.78 0.03 6960 12 0.26 -1 -1 32588 -1 -1 32 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65868 32 32 324 356 1 240 96 17 17 289 -1 unnamed_device 0.35 1577 0.13 0.00 6.3617 -132.975 -6.3617 6.3617 0.47 0.000433087 0.000353843 0.0496065 0.0411037 36 4234 44 6.55708e+06 385760 612192. 2118.31 2.28 0.173367 0.147802 3404 15 1483 4475 252755 58146 6.4819 6.4819 -152.6 -6.4819 0 0 782063. 2706.10 0.16 0.06 0.0186387 0.016863 231 229 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 2.86 0.02 6716 11 0.10 -1 -1 32536 -1 -1 19 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64384 32 32 216 248 1 165 83 17 17 289 -1 unnamed_device 0.16 1068 0.08 0.00 4.89032 -113.882 -4.89032 4.89032 0.47 0.000291739 0.000248084 0.0330721 0.0276599 28 2705 19 6.55708e+06 229045 500653. 1732.36 0.80 0.0776424 0.0660708 2487 15 936 2481 159330 36184 5.25092 5.25092 -133.095 -5.25092 0 0 612192. 2118.31 0.16 0.05 0.0160259 0.0142888 127 121 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 4.95 0.03 6844 13 0.19 -1 -1 32704 -1 -1 27 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65320 32 32 245 277 1 195 91 17 17 289 -1 unnamed_device 0.39 1002 0.10 0.00 6.34604 -129.394 -6.34604 6.34604 0.47 0.000350259 0.000285518 0.0422197 0.0354599 36 2837 37 6.55708e+06 325485 612192. 2118.31 2.46 0.135453 0.115147 2276 16 1100 2970 171808 43102 6.58644 6.58644 -148.76 -6.58644 0 0 782063. 2706.10 0.16 0.04 0.0147784 0.0133275 156 150 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 4.86 0.02 7160 14 0.38 -1 -1 32864 -1 -1 36 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66148 32 32 361 393 1 264 100 17 17 289 -1 unnamed_device 0.29 1630 0.14 0.00 7.12836 -149.782 -7.12836 7.12836 0.47 0.000450198 0.000389364 0.0547718 0.0455321 36 4377 28 6.55708e+06 433980 612192. 2118.31 2.23 0.177306 0.150261 3502 17 1655 5109 289190 67702 7.32956 7.32956 -165.977 -7.32956 0 0 782063. 2706.10 0.16 0.06 0.0229962 0.0207781 267 266 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 3.34 0.03 6876 13 0.30 -1 -1 32696 -1 -1 32 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65624 32 32 318 350 1 242 96 17 17 289 -1 unnamed_device 0.28 1508 0.11 0.00 6.5217 -140.065 -6.5217 6.5217 0.47 0.000409368 0.000353767 0.045365 0.0378182 30 3782 23 6.55708e+06 385760 526063. 1820.29 0.88 0.111321 0.0952282 3249 15 1432 4284 216395 49945 6.7621 6.7621 -158.194 -6.7621 0 0 666494. 2306.21 0.14 0.05 0.0193525 0.0175265 224 223 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 3.52 0.03 6720 11 0.18 -1 -1 32500 -1 -1 23 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65096 30 32 223 255 1 165 85 17 17 289 -1 unnamed_device 0.31 975 0.10 0.00 5.41998 -111.978 -5.41998 5.41998 0.46 0.000294543 0.000253859 0.0405262 0.0342253 36 2351 16 6.55708e+06 277265 612192. 2118.31 1.18 0.109923 0.0940815 1977 14 819 2598 136274 32709 5.54018 5.54018 -124.525 -5.54018 0 0 782063. 2706.10 0.16 0.03 0.0121627 0.0109765 137 132 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 8.48 0.02 7164 15 0.54 -1 -1 32768 -1 -1 33 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65984 32 32 335 367 1 253 97 17 17 289 -1 unnamed_device 0.33 1476 0.14 0.00 7.24395 -144.897 -7.24395 7.24395 0.48 0.000453059 0.000385797 0.0544552 0.0456705 36 4932 42 6.55708e+06 397815 612192. 2118.31 5.60 0.195864 0.166824 3619 33 2075 6842 461437 136506 7.52615 7.52615 -167.665 -7.52615 0 0 782063. 2706.10 0.16 0.11 0.0340624 0.0302324 241 240 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 4.18 0.02 6928 13 0.27 -1 -1 32596 -1 -1 29 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65056 32 32 301 333 1 226 93 17 17 289 -1 unnamed_device 0.29 1417 0.11 0.00 6.5217 -134.532 -6.5217 6.5217 0.47 0.000398842 0.000337648 0.0450624 0.0377157 34 4048 44 6.55708e+06 349595 585099. 2024.56 1.78 0.159543 0.136201 3356 16 1479 4248 256444 59335 6.9215 6.9215 -153.432 -6.9215 0 0 742403. 2568.87 0.15 0.05 0.0182865 0.0164953 207 206 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 3.79 0.02 6744 11 0.09 -1 -1 32604 -1 -1 25 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64872 32 32 238 270 1 183 89 17 17 289 -1 unnamed_device 0.22 1187 0.18 0.00 5.34098 -112.596 -5.34098 5.34098 0.49 0.000527768 0.000456684 0.0753027 0.0632343 28 3216 49 6.55708e+06 301375 500653. 1732.36 1.48 0.146662 0.124611 2640 21 1252 3610 225031 50877 5.74338 5.74338 -135.496 -5.74338 0 0 612192. 2118.31 0.16 0.06 0.0208224 0.0183884 150 143 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 4.53 0.03 7116 12 0.37 -1 -1 32656 -1 -1 31 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65796 32 32 308 340 1 230 95 17 17 289 -1 unnamed_device 0.29 1364 0.14 0.00 5.79484 -120.501 -5.79484 5.79484 0.47 0.000395504 0.000337173 0.058469 0.0491759 38 3301 24 6.55708e+06 373705 638502. 2209.35 1.89 0.160944 0.137373 2757 21 1348 4347 216447 51021 6.03324 6.03324 -134.876 -6.03324 0 0 851065. 2944.86 0.17 0.06 0.0224636 0.0202069 217 213 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 3.31 0.02 6616 12 0.15 -1 -1 32292 -1 -1 26 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65256 32 32 253 285 1 192 90 17 17 289 -1 unnamed_device 0.19 1084 0.10 0.00 6.3623 -124.926 -6.3623 6.3623 0.47 0.000340261 0.000293581 0.0410813 0.0345384 34 3139 36 6.55708e+06 313430 585099. 2024.56 1.12 0.1273 0.10927 2600 17 1130 3158 179135 43599 6.6027 6.6027 -143.822 -6.6027 0 0 742403. 2568.87 0.15 0.04 0.0157668 0.0141599 163 158 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 3.46 0.01 6752 12 0.15 -1 -1 32496 -1 -1 21 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64944 30 32 227 259 1 163 83 17 17 289 -1 unnamed_device 0.17 794 0.11 0.00 5.98944 -118.675 -5.98944 5.98944 0.56 0.000319253 0.000266056 0.0453097 0.0375527 36 2128 27 6.55708e+06 253155 612192. 2118.31 1.23 0.123395 0.10455 1656 15 805 2365 120151 31056 6.22984 6.22984 -131.462 -6.22984 0 0 782063. 2706.10 0.16 0.03 0.0130538 0.0117778 139 136 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 4.05 0.03 7036 12 0.26 -1 -1 32756 -1 -1 32 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65600 29 32 292 324 1 222 93 17 17 289 -1 unnamed_device 0.23 1206 0.13 0.00 5.66038 -107.55 -5.66038 5.66038 0.46 0.0004426 0.000388761 0.0523814 0.0438073 36 3208 20 6.55708e+06 385760 612192. 2118.31 1.65 0.153254 0.130447 2619 15 1219 3749 187660 46440 5.93798 5.93798 -122.357 -5.93798 0 0 782063. 2706.10 0.16 0.05 0.017521 0.0158637 208 203 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 4.28 0.02 6956 14 0.25 -1 -1 32912 -1 -1 32 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65588 32 32 316 348 1 252 96 17 17 289 -1 unnamed_device 0.39 1606 0.12 0.00 6.7189 -141.352 -6.7189 6.7189 0.47 0.000407903 0.000355405 0.0496137 0.0417216 36 3852 41 6.55708e+06 385760 612192. 2118.31 1.67 0.176789 0.152327 3276 17 1617 4426 244072 57065 6.93176 6.93176 -159.042 -6.93176 0 0 782063. 2706.10 0.16 0.06 0.0207637 0.0187629 226 221 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 3.88 0.02 6880 12 0.20 -1 -1 32572 -1 -1 30 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65180 32 32 286 318 1 213 94 17 17 289 -1 unnamed_device 0.39 1349 0.13 0.00 6.26704 -132.468 -6.26704 6.26704 0.47 0.000367614 0.000318841 0.0517358 0.0435426 36 3224 25 6.55708e+06 361650 612192. 2118.31 1.42 0.146917 0.125614 2768 16 1220 3514 182393 43300 6.5217 6.5217 -146.391 -6.5217 0 0 782063. 2706.10 0.16 0.05 0.0177387 0.0160341 193 191 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 2.92 0.02 6684 12 0.11 -1 -1 32532 -1 -1 23 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65072 32 32 221 253 1 168 87 17 17 289 -1 unnamed_device 0.34 969 0.10 0.00 5.49898 -115.815 -5.49898 5.49898 0.51 0.00028915 0.000247709 0.0405584 0.0343219 30 2378 16 6.55708e+06 277265 526063. 1820.29 0.68 0.0801648 0.0683716 2029 15 857 2552 122712 29721 5.85958 5.85958 -129.451 -5.85958 0 0 666494. 2306.21 0.14 0.03 0.0119766 0.0107639 133 126 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 3.23 0.03 6756 12 0.16 -1 -1 32232 -1 -1 27 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64880 31 32 261 293 1 201 90 17 17 289 -1 unnamed_device 0.14 1170 0.12 0.00 5.99404 -117.723 -5.99404 5.99404 0.58 0.000338124 0.000291612 0.0487528 0.0409613 30 3053 30 6.55708e+06 325485 526063. 1820.29 0.97 0.110481 0.0938488 2445 18 1140 3321 162827 39568 6.27364 6.27364 -135.683 -6.27364 0 0 666494. 2306.21 0.14 0.04 0.0162909 0.0146162 172 168 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 4.93 0.03 6960 11 0.15 -1 -1 32616 -1 -1 28 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65248 30 32 277 309 1 209 90 17 17 289 -1 unnamed_device 0.18 1079 0.12 0.00 5.25292 -103.464 -5.25292 5.25292 0.57 0.000382381 0.000311339 0.0486859 0.0405784 36 3501 44 6.55708e+06 337540 612192. 2118.31 2.65 0.156258 0.131869 2596 19 1318 4196 227411 56925 5.49532 5.49532 -123.666 -5.49532 0 0 782063. 2706.10 0.16 0.05 0.0178726 0.0159897 189 186 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 4.80 0.03 6996 11 0.16 -1 -1 32236 -1 -1 29 28 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65420 28 32 251 283 1 192 89 17 17 289 -1 unnamed_device 0.34 1051 0.15 0.00 5.34358 -95.2066 -5.34358 5.34358 0.59 0.000489429 0.000416513 0.0621455 0.0522133 34 3153 43 6.55708e+06 349595 585099. 2024.56 2.12 0.206425 0.177955 2350 27 1168 3797 309322 115260 5.46378 5.46378 -110.816 -5.46378 0 0 742403. 2568.87 0.15 0.07 0.0214406 0.0188474 173 164 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 3.82 0.03 6728 13 0.15 -1 -1 32468 -1 -1 25 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64948 30 32 223 255 1 182 87 17 17 289 -1 unnamed_device 0.48 943 0.10 0.00 6.3995 -123.504 -6.3995 6.3995 0.49 0.000300665 0.00025903 0.039363 0.0331744 28 2912 36 6.55708e+06 301375 500653. 1732.36 1.13 0.0948385 0.0809257 2438 17 1107 2924 191636 47433 6.81257 6.81257 -145.559 -6.81257 0 0 612192. 2118.31 0.20 0.08 0.0312121 0.0284099 142 132 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 3.84 0.03 6744 12 0.14 -1 -1 32256 -1 -1 27 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65176 32 32 269 301 1 211 91 17 17 289 -1 unnamed_device 0.28 1114 0.13 0.00 5.98944 -126.637 -5.98944 5.98944 0.48 0.000382605 0.00033414 0.0538259 0.0452064 36 3085 27 6.55708e+06 325485 612192. 2118.31 1.50 0.148535 0.126617 2544 17 1172 3160 164076 40828 6.22984 6.22984 -141.396 -6.22984 0 0 782063. 2706.10 0.17 0.04 0.016108 0.0144969 180 174 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 4.22 0.02 6972 13 0.24 -1 -1 32388 -1 -1 30 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65472 31 32 283 315 1 212 93 17 17 289 -1 unnamed_device 0.34 1147 0.13 0.00 6.3623 -124.217 -6.3623 6.3623 0.48 0.000368804 0.000318419 0.0557377 0.0468304 34 3623 45 6.55708e+06 361650 585099. 2024.56 1.67 0.167943 0.143165 2741 18 1321 3816 227600 54617 6.8823 6.8823 -146.778 -6.8823 0 0 742403. 2568.87 0.16 0.05 0.0190238 0.0171586 195 190 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 4.34 0.02 6904 14 0.24 -1 -1 32920 -1 -1 31 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65500 32 32 308 340 1 227 95 17 17 289 -1 unnamed_device 0.38 1339 0.14 0.00 6.66944 -135.341 -6.66944 6.66944 0.48 0.000415201 0.000348206 0.0594632 0.0495872 36 3370 21 6.55708e+06 373705 612192. 2118.31 1.69 0.159181 0.13523 2850 18 1322 4017 211944 51502 6.9195 6.9195 -154.953 -6.9195 0 0 782063. 2706.10 0.16 0.05 0.0205848 0.0186265 215 213 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 4.34 0.02 6928 14 0.22 -1 -1 32692 -1 -1 27 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65440 32 32 277 309 1 210 91 17 17 289 -1 unnamed_device 0.35 1312 0.12 0.00 6.4367 -126.286 -6.4367 6.4367 0.47 0.000364758 0.00031613 0.0479057 0.0403804 36 3366 28 6.55708e+06 325485 612192. 2118.31 1.84 0.149516 0.127999 2906 16 1236 3961 235254 53208 6.6399 6.6399 -139.978 -6.6399 0 0 782063. 2706.10 0.16 0.05 0.0172457 0.0156027 183 182 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 4.06 0.03 6928 13 0.32 -1 -1 32580 -1 -1 27 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65236 32 32 288 320 1 218 91 17 17 289 -1 unnamed_device 0.49 1187 0.12 0.00 6.5589 -128.38 -6.5589 6.5589 0.49 0.000389553 0.000335609 0.0484531 0.0404189 38 3038 24 6.55708e+06 325485 638502. 2209.35 1.31 0.146273 0.12508 2507 13 1195 3432 168360 41319 6.97096 6.97096 -148.782 -6.97096 0 0 851065. 2944.86 0.17 0.04 0.0161918 0.0147408 195 193 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 3.56 0.03 6780 13 0.15 -1 -1 32452 -1 -1 24 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65304 30 32 230 262 1 183 86 17 17 289 -1 unnamed_device 0.22 974 0.09 0.00 6.4387 -124.578 -6.4387 6.4387 0.56 0.000310541 0.000269517 0.0374132 0.0315518 28 2808 24 6.55708e+06 289320 500653. 1732.36 1.13 0.0965094 0.082985 2517 18 1070 2742 162277 41433 7.1207 7.1207 -155.119 -7.1207 0 0 612192. 2118.31 0.13 0.07 0.0246067 0.0221147 146 139 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 4.51 0.03 6948 13 0.38 -1 -1 32552 -1 -1 31 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65492 30 32 294 326 1 230 93 17 17 289 -1 unnamed_device 0.31 1266 0.12 0.00 6.69136 -128.83 -6.69136 6.69136 0.49 0.000388314 0.000337317 0.047936 0.0402768 36 3871 24 6.55708e+06 373705 612192. 2118.31 1.75 0.147325 0.125752 2905 19 1506 4457 231039 56576 7.21136 7.21136 -153.032 -7.21136 0 0 782063. 2706.10 0.22 0.09 0.0310775 0.0278541 208 203 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 3.22 0.02 6992 14 0.23 -1 -1 32448 -1 -1 30 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65476 32 32 276 308 1 206 94 17 17 289 -1 unnamed_device 0.28 1357 0.12 0.00 6.45658 -138.907 -6.45658 6.45658 0.47 0.000368401 0.000318085 0.0492634 0.041541 30 3215 20 6.55708e+06 361650 526063. 1820.29 0.84 0.106994 0.0911921 2789 19 1234 4023 206482 46827 6.69438 6.69438 -155.366 -6.69438 0 0 666494. 2306.21 0.14 0.05 0.0189852 0.0171052 184 181 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 4.98 0.02 7028 12 0.20 -1 -1 32640 -1 -1 32 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65004 31 32 293 325 1 227 95 17 17 289 -1 unnamed_device 0.22 1286 0.13 0.00 6.6379 -129.983 -6.6379 6.6379 0.47 0.000369199 0.000318339 0.0534787 0.0445671 36 3833 36 6.55708e+06 385760 612192. 2118.31 2.65 0.173798 0.147808 2973 16 1396 3939 246607 62599 6.9985 6.9985 -154.525 -6.9985 0 0 782063. 2706.10 0.16 0.05 0.0175843 0.0158585 203 200 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 3.59 0.03 6980 13 0.19 -1 -1 32604 -1 -1 28 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65300 30 32 273 305 1 212 90 17 17 289 -1 unnamed_device 0.27 1174 0.11 0.00 6.3231 -111.939 -6.3231 6.3231 0.47 0.000352923 0.000304481 0.0467856 0.0392581 30 3187 24 6.55708e+06 337540 526063. 1820.29 1.26 0.106355 0.0905344 2540 16 1219 3565 185196 44130 6.5635 6.5635 -130.48 -6.5635 0 0 666494. 2306.21 0.15 0.05 0.0166373 0.0150221 185 182 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 4.11 0.02 6900 14 0.35 -1 -1 32472 -1 -1 32 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66080 32 32 310 342 1 239 96 17 17 289 -1 unnamed_device 0.47 1326 0.13 0.00 7.25822 -137.456 -7.25822 7.25822 0.47 0.00044034 0.000385401 0.0539155 0.0450498 38 3386 20 6.55708e+06 385760 638502. 2209.35 1.33 0.152624 0.130003 2719 16 1419 4343 202752 51007 7.69982 7.69982 -154.464 -7.69982 0 0 851065. 2944.86 0.17 0.05 0.0188776 0.0171101 220 215 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 3.85 0.02 7024 11 0.24 -1 -1 32800 -1 -1 29 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65108 29 32 259 291 1 190 90 17 17 289 -1 unnamed_device 0.29 1041 0.12 0.00 5.58904 -104.132 -5.58904 5.58904 0.48 0.000342304 0.00029496 0.0508273 0.0421164 36 2945 20 6.55708e+06 349595 612192. 2118.31 1.45 0.13508 0.114277 2236 13 984 3111 166053 39467 5.98178 5.98178 -122.168 -5.98178 0 0 782063. 2706.10 0.16 0.04 0.0141657 0.0128283 174 170 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 3.93 0.02 6732 13 0.16 -1 -1 32416 -1 -1 23 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64556 32 32 225 257 1 185 87 17 17 289 -1 unnamed_device 0.26 1090 0.11 0.00 6.3975 -139.793 -6.3975 6.3975 0.48 0.000307117 0.000264007 0.0439601 0.0370679 26 3016 23 6.55708e+06 277265 477104. 1650.88 1.61 0.0917167 0.0779999 2594 22 1208 3081 253158 78424 6.66744 6.66744 -160.521 -6.66744 0 0 585099. 2024.56 0.13 0.06 0.0167068 0.0148331 142 130 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 5.17 0.02 6944 14 0.21 -1 -1 32600 -1 -1 27 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65272 32 32 273 305 1 209 91 17 17 289 -1 unnamed_device 0.20 1142 0.16 0.00 6.61036 -129.597 -6.61036 6.61036 0.48 0.000386216 0.000313613 0.0682848 0.0569428 36 3444 33 6.55708e+06 325485 612192. 2118.31 2.79 0.178134 0.150896 2531 17 1186 3302 187948 46074 6.97096 6.97096 -149.163 -6.97096 0 0 782063. 2706.10 0.18 0.05 0.0171381 0.0154027 183 178 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 4.55 0.02 6960 15 0.31 -1 -1 33264 -1 -1 32 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65876 32 32 322 354 1 251 96 17 17 289 -1 unnamed_device 0.59 1575 0.15 0.00 7.57561 -159.76 -7.57561 7.57561 0.48 0.00043835 0.000358022 0.0607068 0.0507246 36 3893 17 6.55708e+06 385760 612192. 2118.31 1.66 0.161537 0.137915 3390 16 1430 4270 237559 55172 8.13741 8.13741 -179.395 -8.13741 0 0 782063. 2706.10 0.16 0.05 0.0195333 0.0176651 228 227 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 3.83 0.03 6744 11 0.13 -1 -1 32300 -1 -1 21 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64844 32 32 218 250 1 164 85 17 17 289 -1 unnamed_device 0.51 948 0.10 0.00 5.43224 -112.159 -5.43224 5.43224 0.48 0.000287226 0.000246387 0.0403974 0.033898 30 2568 28 6.55708e+06 253155 526063. 1820.29 1.33 0.0889044 0.0753542 2042 16 892 2598 130414 32031 5.79284 5.79284 -125.384 -5.79284 0 0 666494. 2306.21 0.17 0.04 0.017206 0.015409 127 123 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 3.91 0.02 6748 12 0.15 -1 -1 32204 -1 -1 26 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65364 31 32 244 276 1 192 89 17 17 289 -1 unnamed_device 0.34 1110 0.16 0.00 5.98944 -126.95 -5.98944 5.98944 0.47 0.000555376 0.000480771 0.0622081 0.0529109 36 3114 36 6.55708e+06 313430 612192. 2118.31 1.45 0.155465 0.133623 2502 16 1141 3305 192508 45136 6.35004 6.35004 -145.72 -6.35004 0 0 782063. 2706.10 0.16 0.04 0.015022 0.0135192 157 151 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 3.54 0.02 6952 12 0.26 -1 -1 32956 -1 -1 31 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65412 32 32 301 333 1 231 95 17 17 289 -1 unnamed_device 0.26 1359 0.11 0.00 6.3179 -135.659 -6.3179 6.3179 0.47 0.000401178 0.000345727 0.0458448 0.0383409 40 2981 19 6.55708e+06 373705 666494. 2306.21 1.11 0.138967 0.119264 2959 17 1329 4090 227345 53729 6.5237 6.5237 -154.366 -6.5237 0 0 872365. 3018.56 0.18 0.05 0.0190946 0.0172243 209 206 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 4.65 0.04 6928 12 0.21 -1 -1 33096 -1 -1 28 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65324 32 32 278 310 1 215 92 17 17 289 -1 unnamed_device 0.37 1335 0.13 0.00 6.10964 -131.864 -6.10964 6.10964 0.47 0.000352558 0.000303051 0.0504964 0.0425409 34 3880 30 6.55708e+06 337540 585099. 2024.56 2.15 0.154063 0.131179 3101 17 1390 4126 252614 58640 6.35004 6.35004 -147.469 -6.35004 0 0 742403. 2568.87 0.16 0.07 0.0199998 0.0180013 186 183 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 4.34 0.03 7108 14 0.41 -1 -1 32840 -1 -1 35 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66260 32 32 333 365 1 246 99 17 17 289 -1 unnamed_device 0.22 1448 0.13 0.00 6.88796 -141.321 -6.88796 6.88796 0.48 0.000461886 0.000373761 0.0519395 0.0432921 46 3451 20 6.55708e+06 421925 782063. 2706.10 1.64 0.160602 0.137695 2865 18 1414 4479 212995 51818 7.36876 7.36876 -159.951 -7.36876 0 0 958460. 3316.47 0.22 0.06 0.0235231 0.0211803 241 238 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 4.34 0.04 6952 11 0.18 -1 -1 32632 -1 -1 27 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65316 30 32 261 293 1 202 89 17 17 289 -1 unnamed_device 0.38 1300 0.10 0.00 5.55184 -108.68 -5.55184 5.55184 0.47 0.00034414 0.000297466 0.0398055 0.0334223 28 3869 31 6.55708e+06 325485 500653. 1732.36 1.70 0.100761 0.0858954 2981 20 1334 4007 316139 99758 6.15284 6.15284 -131.091 -6.15284 0 0 612192. 2118.31 0.21 0.10 0.0252888 0.0225426 176 170 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 3.12 0.02 6780 11 0.20 -1 -1 32296 -1 -1 25 27 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65052 27 32 217 249 1 157 84 17 17 289 -1 unnamed_device 0.19 800 0.13 0.00 5.10318 -92.6031 -5.10318 5.10318 0.48 0.000295643 0.000254735 0.0549931 0.0457653 28 2730 49 6.55708e+06 301375 500653. 1732.36 0.88 0.113272 0.0955947 2046 18 1000 2827 160716 40691 5.57432 5.57432 -113.65 -5.57432 0 0 612192. 2118.31 0.14 0.04 0.0138873 0.0123751 138 132 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 5.26 0.02 7200 13 0.36 -1 -1 32468 -1 -1 40 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65712 32 32 373 405 1 274 104 17 17 289 -1 unnamed_device 0.21 1773 0.14 0.00 6.50744 -131.511 -6.50744 6.50744 0.47 0.000470353 0.000407953 0.0549812 0.0459188 38 4638 21 6.55708e+06 482200 638502. 2209.35 2.68 0.179834 0.152982 3880 19 1809 6017 316281 73392 6.82884 6.82884 -150.657 -6.82884 0 0 851065. 2944.86 0.17 0.07 0.0255466 0.0230714 280 278 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 3.20 0.03 7056 14 0.23 -1 -1 32820 -1 -1 26 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65172 31 32 269 301 1 201 89 17 17 289 -1 unnamed_device 0.23 1126 0.10 0.00 7.04476 -136.025 -7.04476 7.04476 0.47 0.000357198 0.000309813 0.0439063 0.0372247 30 3413 38 6.55708e+06 313430 526063. 1820.29 0.91 0.108518 0.0929826 2411 18 1092 3001 153409 37485 7.32956 7.32956 -154.456 -7.32956 0 0 666494. 2306.21 0.15 0.04 0.0173363 0.0156165 178 176 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 3.79 0.03 6896 12 0.11 -1 -1 32480 -1 -1 27 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64692 32 32 228 260 1 185 91 17 17 289 -1 unnamed_device 0.32 1155 0.11 0.00 6.13518 -136.513 -6.13518 6.13518 0.47 0.000303055 0.000260981 0.0438494 0.03707 34 2836 49 6.55708e+06 325485 585099. 2024.56 1.35 0.133181 0.114224 2510 15 1009 2747 155664 36684 6.37558 6.37558 -153.406 -6.37558 0 0 742403. 2568.87 0.23 0.04 0.0130662 0.0117842 144 133 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 3.40 0.03 7000 13 0.24 -1 -1 32816 -1 -1 25 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65260 32 32 265 297 1 201 89 17 17 289 -1 unnamed_device 0.36 1265 0.11 0.00 6.61236 -131.289 -6.61236 6.61236 0.49 0.000370227 0.000303898 0.0443802 0.0370755 30 3267 40 6.55708e+06 301375 526063. 1820.29 0.92 0.117478 0.100825 2671 16 1109 3475 171924 40984 7.0809 7.0809 -147.284 -7.0809 0 0 666494. 2306.21 0.15 0.04 0.016652 0.0149514 172 170 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 5.72 0.03 7224 13 0.29 -1 -1 32712 -1 -1 35 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66224 31 32 325 357 1 256 98 17 17 289 -1 unnamed_device 0.26 1515 0.19 0.00 6.5197 -132.534 -6.5197 6.5197 0.48 0.000710655 0.000615791 0.0763522 0.0646325 34 4791 39 6.55708e+06 421925 585099. 2024.56 3.18 0.205274 0.174627 3635 19 1757 5003 329842 83150 6.8803 6.8803 -159.387 -6.8803 0 0 742403. 2568.87 0.15 0.07 0.0215736 0.0193403 235 232 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 4.35 0.02 7008 11 0.20 -1 -1 32580 -1 -1 32 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65036 30 32 287 319 1 212 94 17 17 289 -1 unnamed_device 0.35 1150 0.17 0.00 5.87124 -114.633 -5.87124 5.87124 0.52 0.000610038 0.000532022 0.0713274 0.0597488 38 3193 32 6.55708e+06 385760 638502. 2209.35 1.78 0.173452 0.148086 2435 16 1173 4126 200042 49041 6.03324 6.03324 -131.006 -6.03324 0 0 851065. 2944.86 0.17 0.05 0.0176964 0.0159446 199 196 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 5.16 0.05 6992 15 0.27 -1 -1 32548 -1 -1 29 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65036 32 32 297 329 1 231 93 17 17 289 -1 unnamed_device 0.24 1477 0.17 0.00 7.24396 -152.887 -7.24396 7.24396 0.49 0.000410951 0.000336103 0.070907 0.0584998 34 4381 39 6.55708e+06 349595 585099. 2024.56 2.64 0.186057 0.157951 3398 17 1521 4632 290395 68667 7.64635 7.64635 -171.612 -7.64635 0 0 742403. 2568.87 0.15 0.07 0.0194902 0.0174965 203 202 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 3.68 0.05 6952 13 0.29 -1 -1 32592 -1 -1 32 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65932 32 32 311 343 1 238 96 17 17 289 -1 unnamed_device 0.21 1374 0.15 0.00 6.5197 -134.722 -6.5197 6.5197 0.47 0.000406016 0.000352345 0.0609773 0.0510948 30 4202 29 6.55708e+06 385760 526063. 1820.29 1.23 0.132031 0.112148 3007 20 1442 4451 216960 52412 7.1207 7.1207 -159.019 -7.1207 0 0 666494. 2306.21 0.15 0.05 0.0217321 0.0195455 217 216 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 3.96 0.02 6764 12 0.16 -1 -1 32256 -1 -1 29 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65196 29 32 236 268 1 192 90 17 17 289 -1 unnamed_device 0.37 962 0.13 0.00 5.77858 -120.219 -5.77858 5.77858 0.48 0.000380762 0.000327504 0.0510695 0.0433667 30 3262 35 6.55708e+06 349595 526063. 1820.29 1.58 0.109158 0.0929906 2227 18 1246 3156 160150 41160 6.01898 6.01898 -138.979 -6.01898 0 0 666494. 2306.21 0.14 0.04 0.0150297 0.0135109 159 147 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 3.37 0.03 6768 11 0.12 -1 -1 32492 -1 -1 22 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65348 32 32 231 263 1 179 86 17 17 289 -1 unnamed_device 0.35 993 0.11 0.00 5.75104 -117.55 -5.75104 5.75104 0.47 0.000321959 0.0002573 0.0452835 0.0378502 30 2816 21 6.55708e+06 265210 526063. 1820.29 1.08 0.0912294 0.0771616 2244 17 1130 3106 157776 39966 5.99144 5.99144 -135.53 -5.99144 0 0 666494. 2306.21 0.14 0.04 0.0137169 0.0123147 138 136 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 3.95 0.02 6908 13 0.25 -1 -1 32572 -1 -1 31 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65436 31 32 294 326 1 224 94 17 17 289 -1 unnamed_device 0.39 1311 0.15 0.00 6.7555 -134.139 -6.7555 6.7555 0.47 0.000387087 0.000335147 0.0605126 0.0510137 36 3314 28 6.55708e+06 373705 612192. 2118.31 1.41 0.162198 0.138907 2852 17 1356 4222 217013 52110 6.90524 6.90524 -151.513 -6.90524 0 0 782063. 2706.10 0.16 0.05 0.0191529 0.0173297 204 201 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 3.65 0.03 6728 10 0.14 -1 -1 32428 -1 -1 24 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65412 29 32 221 253 1 166 85 17 17 289 -1 unnamed_device 0.21 939 0.11 0.00 4.86478 -97.3409 -4.86478 4.86478 0.47 0.000301109 0.000247963 0.0428619 0.0356218 34 2775 45 6.55708e+06 289320 585099. 2024.56 1.49 0.128008 0.108443 2133 16 934 2687 157408 37686 5.38478 5.38478 -115.174 -5.38478 0 0 742403. 2568.87 0.16 0.04 0.0132139 0.011904 138 132 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 4.45 0.03 6712 14 0.14 -1 -1 32504 -1 -1 24 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65016 32 32 240 272 1 179 88 17 17 289 -1 unnamed_device 0.34 948 0.11 0.00 6.4387 -127.865 -6.4387 6.4387 0.47 0.000323433 0.000277853 0.0447994 0.0378521 36 2682 24 6.55708e+06 289320 612192. 2118.31 2.00 0.125656 0.10697 2106 16 1018 2813 157441 40252 6.4805 6.4805 -141.897 -6.4805 0 0 782063. 2706.10 0.22 0.04 0.0152916 0.013765 149 145 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 4.94 0.03 6948 12 0.27 -1 -1 32936 -1 -1 29 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64860 31 32 292 324 1 211 92 17 17 289 -1 unnamed_device 0.29 1214 0.12 0.00 6.3205 -129.48 -6.3205 6.3205 0.47 0.00037536 0.000325373 0.0502 0.0420665 34 4003 33 6.55708e+06 349595 585099. 2024.56 2.46 0.157035 0.13351 3062 17 1482 4474 270793 65281 6.59044 6.59044 -148.575 -6.59044 0 0 742403. 2568.87 0.16 0.06 0.0181294 0.0162968 201 199 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 3.75 0.03 6816 12 0.11 -1 -1 32152 -1 -1 23 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65148 31 32 229 261 1 182 86 17 17 289 -1 unnamed_device 0.31 991 0.10 0.00 5.57998 -119.035 -5.57998 5.57998 0.47 0.000294897 0.000253427 0.0390731 0.0329092 36 2514 35 6.55708e+06 277265 612192. 2118.31 1.54 0.117199 0.100226 2197 13 980 2707 157603 37596 5.97978 5.97978 -134.813 -5.97978 0 0 782063. 2706.10 0.16 0.03 0.0116853 0.0105257 144 136 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 3.02 0.03 6908 12 0.16 -1 -1 32624 -1 -1 27 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65348 32 32 282 314 1 205 91 17 17 289 -1 unnamed_device 0.26 1290 0.12 0.00 5.71184 -122.493 -5.71184 5.71184 0.47 0.0003494 0.000300752 0.0499882 0.0420805 30 3310 24 6.55708e+06 325485 526063. 1820.29 0.74 0.105112 0.0895422 2673 18 1190 3903 202585 46755 6.07244 6.07244 -139.723 -6.07244 0 0 666494. 2306.21 0.15 0.06 0.0206038 0.0184315 188 187 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 3.21 0.03 7012 13 0.26 -1 -1 32788 -1 -1 29 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65216 31 32 269 301 1 216 92 17 17 289 -1 unnamed_device 0.36 1371 0.11 0.00 6.1591 -134.057 -6.1591 6.1591 0.47 0.000363973 0.000315796 0.0443179 0.0373015 30 3393 27 6.55708e+06 349595 526063. 1820.29 0.71 0.103186 0.0885653 2840 16 1243 3739 187130 44337 7.0005 7.0005 -157.666 -7.0005 0 0 666494. 2306.21 0.14 0.05 0.0172228 0.0155059 179 176 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 3.21 0.03 6688 11 0.13 -1 -1 32312 -1 -1 27 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65196 32 32 237 269 1 184 91 17 17 289 -1 unnamed_device 0.23 1155 0.09 0.00 5.58198 -121.188 -5.58198 5.58198 0.48 0.00030636 0.000263967 0.0326022 0.0272765 30 3067 20 6.55708e+06 325485 526063. 1820.29 0.91 0.0792839 0.0674886 2483 15 1026 3041 154151 36198 5.94258 5.94258 -137.415 -5.94258 0 0 666494. 2306.21 0.14 0.04 0.0137161 0.012406 148 142 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 4.01 0.02 6772 13 0.16 -1 -1 32508 -1 -1 27 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65092 32 32 259 291 1 202 91 17 17 289 -1 unnamed_device 0.20 1156 0.12 0.00 6.42444 -134.013 -6.42444 6.42444 0.48 0.000343284 0.000297286 0.0492414 0.0419057 36 3132 39 6.55708e+06 325485 612192. 2118.31 1.67 0.144523 0.123982 2478 15 1111 2952 168024 41837 6.42444 6.42444 -146.528 -6.42444 0 0 782063. 2706.10 0.16 0.04 0.0153163 0.0137915 167 164 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 4.12 0.02 6932 13 0.21 -1 -1 32500 -1 -1 29 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65208 32 32 277 309 1 220 93 17 17 289 -1 unnamed_device 0.19 1353 0.13 0.00 6.2793 -132.202 -6.2793 6.2793 0.48 0.000356854 0.000308603 0.0523825 0.0440639 38 3451 19 6.55708e+06 349595 638502. 2209.35 1.73 0.139 0.118783 2678 16 1254 3842 195520 45990 6.6399 6.6399 -147.48 -6.6399 0 0 851065. 2944.86 0.17 0.05 0.0165719 0.0149347 187 182 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 3.25 0.03 6932 11 0.16 -1 -1 32636 -1 -1 29 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65368 29 32 245 277 1 189 90 17 17 289 -1 unnamed_device 0.28 1104 0.12 0.00 5.26058 -102.1 -5.26058 5.26058 0.69 0.000318136 0.000273495 0.0471698 0.0396829 30 2811 25 6.55708e+06 349595 526063. 1820.29 0.74 0.100059 0.0851526 2262 15 1014 3137 152016 36547 5.62118 5.62118 -118.201 -5.62118 0 0 666494. 2306.21 0.14 0.04 0.0140128 0.0125892 162 156 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 4.17 0.02 7040 14 0.28 -1 -1 32888 -1 -1 32 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66188 32 32 316 348 1 250 96 17 17 289 -1 unnamed_device 0.33 1681 0.12 0.00 7.08916 -149.8 -7.08916 7.08916 0.48 0.000412966 0.000359044 0.0496642 0.0417985 38 4106 24 6.55708e+06 385760 638502. 2209.35 1.55 0.159707 0.1365 3314 17 1527 4654 240281 54606 7.26282 7.26282 -165.577 -7.26282 0 0 851065. 2944.86 0.24 0.06 0.0214862 0.0193497 225 221 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 3.81 0.03 6784 12 0.13 -1 -1 32204 -1 -1 29 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65304 31 32 230 262 1 186 92 17 17 289 -1 unnamed_device 0.33 1186 0.10 0.00 5.73938 -124.079 -5.73938 5.73938 0.46 0.000304154 0.000260691 0.0374789 0.0316012 34 3074 47 6.55708e+06 349595 585099. 2024.56 1.54 0.126675 0.1085 2513 15 1032 2662 162432 37389 6.09998 6.09998 -141.648 -6.09998 0 0 742403. 2568.87 0.16 0.04 0.0135241 0.012184 145 137 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 3.52 0.03 7060 13 0.25 -1 -1 33164 -1 -1 27 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65012 32 32 282 314 1 213 91 17 17 289 -1 unnamed_device 0.29 1365 0.10 0.00 6.2421 -128.415 -6.2421 6.2421 0.47 0.000379525 0.000329567 0.0417452 0.0349471 30 3863 30 6.55708e+06 325485 526063. 1820.29 1.08 0.104225 0.0888786 2990 16 1316 4197 209491 48921 6.6027 6.6027 -144.486 -6.6027 0 0 666494. 2306.21 0.16 0.06 0.0197383 0.0178461 189 187 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 3.31 0.02 6816 13 0.14 -1 -1 32564 -1 -1 25 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65144 32 32 235 267 1 180 89 17 17 289 -1 unnamed_device 0.37 1081 0.11 0.00 6.38724 -138.054 -6.38724 6.38724 0.48 0.000314529 0.00027064 0.0436493 0.0369715 30 2975 25 6.55708e+06 301375 526063. 1820.29 0.81 0.0920745 0.0785678 2301 16 1037 2780 140367 33813 6.73618 6.73618 -155.506 -6.73618 0 0 666494. 2306.21 0.24 0.04 0.016121 0.0145767 146 140 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 3.61 0.02 7036 12 0.16 -1 -1 32664 -1 -1 26 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65108 32 32 265 297 1 195 90 17 17 289 -1 unnamed_device 0.27 1073 0.12 0.00 5.7633 -119.761 -5.7633 5.7633 0.47 0.000365518 0.000300099 0.0478394 0.0395975 36 2788 31 6.55708e+06 313430 612192. 2118.31 1.24 0.137651 0.116935 2310 14 963 3104 163811 39365 6.43304 6.43304 -138.622 -6.43304 0 0 782063. 2706.10 0.16 0.04 0.0156751 0.0142108 172 170 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 5.85 0.03 7260 15 0.40 -1 -1 32720 -1 -1 34 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66388 32 32 344 376 1 259 98 17 17 289 -1 unnamed_device 0.25 1525 0.15 0.00 7.45942 -145.137 -7.45942 7.45942 0.47 0.000449538 0.000390466 0.0604862 0.0506834 38 4431 45 6.55708e+06 409870 638502. 2209.35 3.22 0.197654 0.168494 3251 18 1663 5442 265400 63495 7.69016 7.69016 -165.796 -7.69016 0 0 851065. 2944.86 0.17 0.06 0.0234722 0.0211479 250 249 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 2.83 0.01 6560 10 0.06 -1 -1 31928 -1 -1 17 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64660 30 32 173 205 1 128 79 17 17 289 -1 unnamed_device 0.26 662 0.08 0.00 4.44306 -99.4164 -4.44306 4.44306 0.48 0.000222918 0.000191053 0.0322425 0.0270571 28 2063 48 6.55708e+06 204935 500653. 1732.36 0.78 0.0751987 0.0634671 1589 17 709 1618 110816 28789 4.76446 4.76446 -119.346 -4.76446 0 0 612192. 2118.31 0.14 0.03 0.0102165 0.00901861 93 82 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 2.93 0.03 6780 13 0.15 -1 -1 33032 -1 -1 29 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64960 30 32 229 261 1 172 91 17 17 289 -1 unnamed_device 0.20 860 0.10 0.00 6.0801 -119.531 -6.0801 6.0801 0.48 0.000311746 0.000270232 0.0413674 0.0347657 30 2502 45 6.55708e+06 349595 526063. 1820.29 0.81 0.104388 0.089179 1968 14 1021 2641 120444 31345 6.2395 6.2395 -132.421 -6.2395 0 0 666494. 2306.21 0.14 0.03 0.0125722 0.011398 150 138 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 3.61 0.02 6720 12 0.14 -1 -1 32736 -1 -1 25 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65124 32 32 261 293 1 198 89 17 17 289 -1 unnamed_device 0.45 1204 0.13 0.00 5.71184 -127.095 -5.71184 5.71184 0.48 0.000329225 0.000284084 0.0516015 0.0429999 36 2859 16 6.55708e+06 301375 612192. 2118.31 1.14 0.131389 0.111779 2591 15 1077 3162 177648 42036 6.15344 6.15344 -145.897 -6.15344 0 0 782063. 2706.10 0.16 0.04 0.0149315 0.0134721 168 166 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 2.89 0.02 6808 9 0.13 -1 -1 32400 -1 -1 25 25 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64512 25 32 184 216 1 141 82 17 17 289 -1 unnamed_device 0.20 740 0.10 0.00 4.60046 -84.498 -4.60046 4.60046 0.47 0.000246247 0.000210692 0.0403086 0.0335557 28 2022 45 6.55708e+06 301375 500653. 1732.36 0.68 0.0868328 0.0732003 1681 16 786 2225 114403 29318 4.72066 4.72066 -96.356 -4.72066 0 0 612192. 2118.31 0.20 0.03 0.0112562 0.0100948 112 103 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 4.91 0.02 6976 12 0.21 -1 -1 32652 -1 -1 33 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65272 32 32 302 334 1 240 97 17 17 289 -1 unnamed_device 0.53 1474 0.13 0.00 6.4407 -141.085 -6.4407 6.4407 0.48 0.000383547 0.000329669 0.0515952 0.0426768 36 4110 27 6.55708e+06 397815 612192. 2118.31 2.17 0.157492 0.133593 3316 24 1501 4379 353755 116587 6.7203 6.7203 -158.904 -6.7203 0 0 782063. 2706.10 0.16 0.08 0.0230769 0.0206354 209 207 -1 -1 -1 -1
+ fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 5.18 0.03 6956 14 0.23 -1 -1 32940 -1 -1 30 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65288 31 32 295 327 1 219 93 17 17 289 -1 unnamed_device 0.36 1241 0.12 0.00 6.82122 -134.603 -6.82122 6.82122 0.48 0.000388839 0.000337484 0.0484318 0.0408944 38 3809 46 6.55708e+06 361650 638502. 2209.35 2.59 0.175603 0.150442 2677 16 1333 4064 220695 56686 7.18182 7.18182 -157.398 -7.18182 0 0 851065. 2944.86 0.17 0.05 0.0186919 0.0168364 205 202 -1 -1 -1 -1
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 2.71 0.02 7240 1 0.02 -1 -1 30436 -1 -1 36 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65704 32 32 439 351 1 194 100 17 17 289 -1 unnamed_device 0.22 930 0.18 0.00 3.41716 -116.811 -3.41716 3.41716 0.47 0.000387492 0.00033915 0.0653544 0.0562546 32 2944 25 6.64007e+06 452088 554710. 1919.41 0.59 0.117117 0.101245 2201 22 1962 3313 242066 56274 3.93203 3.93203 -145.136 -3.93203 0 0 701300. 2426.64 0.15 0.05 0.0184329 0.0163147 153 80 32 32 96 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 2.57 0.03 7168 1 0.01 -1 -1 30344 -1 -1 23 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65288 30 32 412 333 1 186 85 17 17 289 -1 unnamed_device 0.13 793 0.17 0.00 3.60576 -106.488 -3.60576 3.60576 0.48 0.000360004 0.000317514 0.0676419 0.0588288 32 2065 23 6.64007e+06 288834 554710. 1919.41 0.51 0.115301 0.100164 1636 20 1522 2628 149092 38171 3.69162 3.69162 -126.113 -3.69162 0 0 701300. 2426.64 0.15 0.04 0.0167162 0.0147325 142 78 30 30 89 30
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 2.58 0.04 7192 1 0.02 -1 -1 30276 -1 -1 35 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65516 32 32 388 310 1 186 99 17 17 289 -1 unnamed_device 0.07 1022 0.16 0.00 3.13925 -108.691 -3.13925 3.13925 0.47 0.000335441 0.00029305 0.0542857 0.0466502 32 2311 23 6.64007e+06 439530 554710. 1919.41 0.51 0.100705 0.0869616 2064 24 1519 2313 173223 37242 3.54643 3.54643 -129.738 -3.54643 0 0 701300. 2426.64 0.16 0.05 0.0183232 0.0160117 142 50 54 32 64 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 2.43 0.03 7120 1 0.01 -1 -1 30216 -1 -1 24 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65204 29 32 347 271 1 184 85 17 17 289 -1 unnamed_device 0.05 965 0.16 0.00 3.58556 -107.72 -3.58556 3.58556 0.47 0.000321031 0.000282619 0.056334 0.0488852 30 2040 19 6.64007e+06 301392 526063. 1820.29 0.51 0.0974001 0.0846733 1722 20 1302 2356 121784 29212 3.57243 3.57243 -125.163 -3.57243 0 0 666494. 2306.21 0.14 0.04 0.0149969 0.013346 139 25 87 29 29 29
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 3.41 0.02 7304 1 0.01 -1 -1 30080 -1 -1 22 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65344 32 32 377 289 1 195 86 17 17 289 -1 unnamed_device 0.13 782 0.14 0.00 3.30796 -110.271 -3.30796 3.30796 0.48 0.00036433 0.000320845 0.0501243 0.0437673 36 2343 29 6.64007e+06 276276 612192. 2118.31 1.38 0.136112 0.117731 1673 21 1714 3093 179179 43589 3.60423 3.60423 -133.746 -3.60423 0 0 782063. 2706.10 0.16 0.05 0.0170175 0.0150835 153 31 96 32 32 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 2.73 0.02 7056 1 0.02 -1 -1 30108 -1 -1 38 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65532 32 32 403 317 1 199 102 17 17 289 -1 unnamed_device 0.11 1026 0.19 0.00 3.0343 -100.583 -3.0343 3.0343 0.48 0.000365643 0.000322614 0.0634729 0.054735 28 2631 24 6.64007e+06 477204 500653. 1732.36 0.56 0.113622 0.098129 2127 18 1215 2043 160621 34570 2.84677 2.84677 -115.673 -2.84677 0 0 612192. 2118.31 0.16 0.04 0.015694 0.0139438 156 61 63 32 63 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 2.53 0.03 6992 1 0.01 -1 -1 30112 -1 -1 20 27 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64872 27 32 275 232 1 135 79 17 17 289 -1 unnamed_device 0.06 729 0.12 0.00 2.7079 -83.0755 -2.7079 2.7079 0.58 0.000268376 0.000234744 0.0457377 0.0393274 32 1561 19 6.64007e+06 251160 554710. 1919.41 0.47 0.0800245 0.0690028 1442 23 1063 1841 118070 28425 2.82497 2.82497 -97.9212 -2.82497 0 0 701300. 2426.64 0.15 0.04 0.013329 0.0116932 100 26 54 27 27 27
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 2.64 0.02 7100 1 0.01 -1 -1 29996 -1 -1 34 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65272 31 32 319 244 1 185 97 17 17 289 -1 unnamed_device 0.09 891 0.16 0.00 2.7339 -87.1235 -2.7339 2.7339 0.47 0.000308788 0.000269481 0.0537864 0.0458454 30 2222 22 6.64007e+06 426972 526063. 1820.29 0.59 0.0988229 0.0845573 1724 17 958 1592 94040 21752 2.55337 2.55337 -98.583 -2.55337 0 0 666494. 2306.21 0.16 0.03 0.0124921 0.0110626 140 -1 115 31 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 2.38 0.03 6916 1 0.01 -1 -1 30068 -1 -1 17 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65188 31 32 340 294 1 147 80 17 17 289 -1 unnamed_device 0.10 720 0.11 0.00 2.69519 -84.1595 -2.69519 2.69519 0.48 0.000300207 0.000263081 0.0433421 0.0374024 30 1750 20 6.64007e+06 213486 526063. 1820.29 0.48 0.0827417 0.0713344 1487 19 697 1135 72361 16839 2.63757 2.63757 -102.031 -2.63757 0 0 666494. 2306.21 0.14 0.03 0.0131136 0.0115553 106 81 0 0 84 31
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 2.57 0.02 6964 1 0.02 -1 -1 29984 -1 -1 17 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65092 32 32 315 257 1 162 81 17 17 289 -1 unnamed_device 0.10 665 0.12 0.00 2.7959 -96.8909 -2.7959 2.7959 0.48 0.000295204 0.000258608 0.0492962 0.0426716 32 1920 23 6.64007e+06 213486 554710. 1919.41 0.57 0.109156 0.0940775 1500 24 1419 2046 131709 32893 2.97997 2.97997 -116.902 -2.97997 0 0 701300. 2426.64 0.15 0.04 0.0159975 0.0140441 121 31 64 32 32 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 2.44 0.02 6996 1 0.01 -1 -1 30064 -1 -1 18 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65360 30 32 328 276 1 151 80 17 17 289 -1 unnamed_device 0.10 705 0.10 0.00 2.80139 -91.2998 -2.80139 2.80139 0.48 0.000306923 0.000272598 0.0414672 0.0358811 26 1758 22 6.64007e+06 226044 477104. 1650.88 0.50 0.0826153 0.071579 1566 17 1026 1483 93337 22295 3.05617 3.05617 -116.581 -3.05617 0 0 585099. 2024.56 0.18 0.05 0.0201228 0.017534 110 58 30 30 60 30
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 2.50 0.03 7024 1 0.01 -1 -1 30268 -1 -1 29 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65216 32 32 332 281 1 156 93 17 17 289 -1 unnamed_device 0.11 879 0.14 0.00 2.9171 -98.8205 -2.9171 2.9171 0.48 0.000313157 0.000271434 0.0498105 0.0422151 32 1929 22 6.64007e+06 364182 554710. 1919.41 0.48 0.0885802 0.0753995 1821 20 1085 1647 127051 27633 2.86577 2.86577 -112.443 -2.86577 0 0 701300. 2426.64 0.15 0.04 0.013335 0.0116448 114 57 25 25 64 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 3.16 0.04 7176 1 0.01 -1 -1 30068 -1 -1 34 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65528 32 32 387 306 1 188 98 17 17 289 -1 unnamed_device 0.13 1000 0.16 0.00 2.7749 -100.309 -2.7749 2.7749 0.49 0.00037898 0.000320029 0.0509297 0.0431279 26 2895 35 6.64007e+06 426972 477104. 1650.88 1.10 0.107682 0.0916797 2239 22 1523 2639 195938 43535 3.28737 3.28737 -131.638 -3.28737 0 0 585099. 2024.56 0.13 0.05 0.0185263 0.0162559 145 55 64 32 57 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 2.83 0.03 7068 1 0.02 -1 -1 30156 -1 -1 36 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65692 32 32 408 320 1 200 100 17 17 289 -1 unnamed_device 0.16 968 0.21 0.00 3.38416 -115.902 -3.38416 3.38416 0.47 0.000365854 0.000322141 0.0712054 0.0615156 32 2678 27 6.64007e+06 452088 554710. 1919.41 0.70 0.135903 0.117633 2171 20 1925 3048 227406 51334 3.76663 3.76663 -142.016 -3.76663 0 0 701300. 2426.64 0.15 0.05 0.0169573 0.0149948 158 60 64 32 64 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 2.37 0.02 7012 1 0.01 -1 -1 30220 -1 -1 19 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64976 29 32 276 232 1 145 80 17 17 289 -1 unnamed_device 0.07 647 0.10 0.00 2.7049 -82.3904 -2.7049 2.7049 0.48 0.00035993 0.000311823 0.0393942 0.0337958 30 1762 23 6.64007e+06 238602 526063. 1820.29 0.49 0.0765593 0.0660035 1474 17 905 1472 82083 20248 2.66277 2.66277 -96.8915 -2.66277 0 0 666494. 2306.21 0.14 0.03 0.0108453 0.00958632 108 21 58 29 24 24
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 2.56 0.03 7056 1 0.01 -1 -1 30052 -1 -1 22 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65576 32 32 402 316 1 192 86 17 17 289 -1 unnamed_device 0.13 852 0.16 0.00 2.7929 -95.7462 -2.7929 2.7929 0.47 0.00036819 0.00032754 0.0626049 0.0547375 32 2359 21 6.64007e+06 276276 554710. 1919.41 0.53 0.110912 0.0968462 1897 22 1752 3034 207025 47804 3.27777 3.27777 -122.701 -3.27777 0 0 701300. 2426.64 0.15 0.05 0.017845 0.0157805 148 60 64 32 62 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 2.60 0.02 7144 1 0.01 -1 -1 30140 -1 -1 36 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65704 32 32 384 304 1 185 100 17 17 289 -1 unnamed_device 0.11 838 0.14 0.00 2.9051 -99.5384 -2.9051 2.9051 0.48 0.00034942 0.000305861 0.0468115 0.0400769 28 2269 25 6.64007e+06 452088 500653. 1732.36 0.62 0.0976621 0.0837854 1918 20 1346 1944 123390 31582 2.87877 2.87877 -119.784 -2.87877 0 0 612192. 2118.31 0.13 0.04 0.0159133 0.0140142 144 54 64 32 56 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 2.72 0.02 6832 1 0.02 -1 -1 29964 -1 -1 31 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65368 32 32 340 285 1 162 95 17 17 289 -1 unnamed_device 0.11 713 0.15 0.00 2.28664 -81.031 -2.28664 2.28664 0.55 0.000307088 0.000267667 0.0527029 0.044555 30 1885 34 6.64007e+06 389298 526063. 1820.29 0.58 0.100652 0.0857717 1504 20 1081 1725 94540 23525 2.08471 2.08471 -90.8101 -2.08471 0 0 666494. 2306.21 0.15 0.03 0.0140726 0.012447 119 62 29 29 64 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 2.63 0.02 6808 1 0.01 -1 -1 29968 -1 -1 15 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64284 30 32 229 211 1 119 77 17 17 289 -1 unnamed_device 0.05 680 0.08 0.00 2.12244 -73.0174 -2.12244 2.12244 0.68 0.000224656 0.000194901 0.0334074 0.028607 32 1451 18 6.64007e+06 188370 554710. 1919.41 0.47 0.0618986 0.0530563 1294 17 721 1045 80611 18160 2.09431 2.09431 -84.475 -2.09431 0 0 701300. 2426.64 0.16 0.02 0.00881553 0.00769781 85 29 24 24 30 30
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 2.54 0.02 6972 1 0.01 -1 -1 30208 -1 -1 17 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65284 31 32 337 282 1 154 80 17 17 289 -1 unnamed_device 0.17 689 0.12 0.00 3.41785 -99.966 -3.41785 3.41785 0.50 0.000310826 0.000272574 0.0499512 0.0434007 32 1813 16 6.64007e+06 213486 554710. 1919.41 0.52 0.0879727 0.0764767 1576 22 929 1345 98921 24311 3.47243 3.47243 -120.449 -3.47243 0 0 701300. 2426.64 0.15 0.03 0.0148977 0.0131096 113 55 31 31 62 31
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 2.77 0.01 7036 1 0.01 -1 -1 29960 -1 -1 36 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66000 32 32 367 284 1 192 100 17 17 289 -1 unnamed_device 0.11 922 0.19 0.00 3.36336 -112.661 -3.36336 3.36336 0.48 0.000395434 0.000352179 0.0650605 0.0562849 30 2500 39 6.64007e+06 452088 526063. 1820.29 0.77 0.123887 0.107123 1793 21 1243 1882 120246 27749 3.55743 3.55743 -131.975 -3.55743 0 0 666494. 2306.21 0.14 0.04 0.0159743 0.0141642 147 31 91 32 32 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 2.64 0.02 7176 1 0.03 -1 -1 30420 -1 -1 38 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65512 32 32 461 376 1 196 102 17 17 289 -1 unnamed_device 0.15 918 0.18 0.00 3.07805 -102.745 -3.07805 3.07805 0.48 0.000382778 0.000335607 0.0623918 0.0536257 32 2607 23 6.64007e+06 477204 554710. 1919.41 0.57 0.114533 0.0987893 2206 23 1614 2459 186837 42312 3.72383 3.72383 -126.428 -3.72383 0 0 701300. 2426.64 0.15 0.05 0.0196375 0.0171765 150 108 0 0 125 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 2.31 0.03 6820 1 0.01 -1 -1 30144 -1 -1 17 26 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64828 26 32 205 193 1 109 75 17 17 289 -1 unnamed_device 0.06 399 0.07 0.00 2.13964 -57.9306 -2.13964 2.13964 0.48 0.000214352 0.000183253 0.0275987 0.0235713 32 1133 18 6.64007e+06 213486 554710. 1919.41 0.49 0.0536925 0.0459311 934 19 561 897 55762 15117 1.85991 1.85991 -68.2335 -1.85991 0 0 701300. 2426.64 0.15 0.02 0.00864658 0.00750799 77 21 26 26 22 22
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 2.57 0.02 7068 1 0.01 -1 -1 29980 -1 -1 22 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65452 32 32 334 252 1 187 86 17 17 289 -1 unnamed_device 0.07 891 0.16 0.00 3.65376 -111.983 -3.65376 3.65376 0.47 0.000453427 0.000397035 0.0611435 0.0532148 30 2331 25 6.64007e+06 276276 526063. 1820.29 0.62 0.107919 0.0936173 1747 20 1219 2038 118199 29706 3.72162 3.72162 -131.796 -3.72162 0 0 666494. 2306.21 0.14 0.04 0.0149967 0.0133577 138 -1 122 32 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 2.27 0.02 6656 1 0.01 -1 -1 29948 -1 -1 13 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63996 32 32 200 183 1 122 77 17 17 289 -1 unnamed_device 0.04 734 0.08 0.00 1.98053 -75.0555 -1.98053 1.98053 0.48 0.00021413 0.000183897 0.0308942 0.0264639 28 1529 18 6.64007e+06 163254 500653. 1732.36 0.46 0.0579956 0.0497143 1380 17 604 809 57671 13511 2.14051 2.14051 -86.7654 -2.14051 0 0 612192. 2118.31 0.13 0.02 0.00909121 0.00787609 81 -1 53 32 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 2.56 0.02 7172 1 0.01 -1 -1 30292 -1 -1 33 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65496 32 32 377 289 1 194 97 17 17 289 -1 unnamed_device 0.07 1095 0.18 0.00 3.34716 -119.74 -3.34716 3.34716 0.48 0.000341642 0.000299874 0.0600436 0.051624 28 2570 21 6.64007e+06 414414 500653. 1732.36 0.63 0.10597 0.0914525 2140 21 1609 2430 167691 37199 3.57423 3.57423 -139.305 -3.57423 0 0 612192. 2118.31 0.14 0.04 0.0177738 0.0158592 151 21 96 32 32 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 3.10 0.02 7008 1 0.01 -1 -1 29944 -1 -1 36 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65672 32 32 338 254 1 196 100 17 17 289 -1 unnamed_device 0.08 896 0.17 0.00 3.1295 -98.6967 -3.1295 3.1295 0.48 0.000322415 0.000281985 0.0549222 0.0471408 28 3135 25 6.64007e+06 452088 500653. 1732.36 1.15 0.103729 0.0888557 2244 20 1512 2585 243422 56014 3.33557 3.33557 -119.508 -3.33557 0 0 612192. 2118.31 0.13 0.05 0.0146947 0.0129621 150 -1 124 32 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 2.67 0.03 7192 1 0.01 -1 -1 30392 -1 -1 37 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65356 32 32 408 320 1 197 101 17 17 289 -1 unnamed_device 0.08 889 0.15 0.00 3.43916 -115.732 -3.43916 3.43916 0.49 0.000367884 0.000325595 0.0499842 0.0428622 30 2578 22 6.64007e+06 464646 526063. 1820.29 0.67 0.0992504 0.0855423 1931 21 1664 2705 131373 33725 3.69963 3.69963 -139.043 -3.69963 0 0 666494. 2306.21 0.15 0.04 0.016885 0.015032 155 54 64 32 64 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 2.35 0.02 7116 1 0.01 -1 -1 30008 -1 -1 16 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65268 32 32 295 247 1 149 80 17 17 289 -1 unnamed_device 0.06 740 0.09 0.00 2.45379 -85.4803 -2.45379 2.45379 0.48 0.000288644 0.000254324 0.0366637 0.0317165 32 1856 18 6.64007e+06 200928 554710. 1919.41 0.48 0.0723213 0.0626118 1617 20 969 1592 112980 26634 2.92717 2.92717 -105.435 -2.92717 0 0 701300. 2426.64 0.15 0.03 0.0132579 0.0116758 107 31 54 32 32 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 2.53 0.02 7176 1 0.01 -1 -1 30024 -1 -1 18 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65188 30 32 299 247 1 154 80 17 17 289 -1 unnamed_device 0.11 615 0.12 0.00 3.0263 -91.637 -3.0263 3.0263 0.48 0.000292919 0.000257444 0.0485888 0.0420754 30 1736 23 6.64007e+06 226044 526063. 1820.29 0.50 0.0881951 0.0763131 1317 21 938 1396 74006 18838 2.81857 2.81857 -103.635 -2.81857 0 0 666494. 2306.21 0.18 0.04 0.0157975 0.0138915 112 29 60 30 30 30
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 2.54 0.03 6968 1 0.01 -1 -1 30180 -1 -1 20 28 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64596 28 32 283 237 1 150 80 17 17 289 -1 unnamed_device 0.09 725 0.12 0.00 2.7207 -86.0873 -2.7207 2.7207 0.47 0.000271767 0.000238268 0.0427341 0.0369921 30 1780 23 6.64007e+06 251160 526063. 1820.29 0.58 0.0970907 0.0835874 1458 20 969 1673 97166 22424 2.55817 2.55817 -98.1765 -2.55817 0 0 666494. 2306.21 0.15 0.03 0.0126321 0.0111519 107 27 56 28 28 28
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 2.76 0.03 6948 1 0.01 -1 -1 30020 -1 -1 18 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65024 32 32 284 226 1 166 82 17 17 289 -1 unnamed_device 0.06 916 0.16 0.00 2.8039 -102.89 -2.8039 2.8039 0.58 0.000282688 0.000246541 0.0573078 0.0492882 32 2004 21 6.64007e+06 226044 554710. 1919.41 0.62 0.103383 0.0894381 1901 17 1370 2146 154700 35850 3.06717 3.06717 -126.234 -3.06717 0 0 701300. 2426.64 0.15 0.04 0.0116627 0.010308 125 -1 96 32 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 2.50 0.02 6936 1 0.01 -1 -1 30220 -1 -1 31 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65328 31 32 305 251 1 162 94 17 17 289 -1 unnamed_device 0.08 872 0.14 0.00 2.7427 -96.6859 -2.7427 2.7427 0.50 0.000284652 0.000248541 0.0454333 0.0388655 32 2034 19 6.64007e+06 389298 554710. 1919.41 0.49 0.0817954 0.0703042 1787 20 1245 1972 142728 31373 2.79497 2.79497 -112.66 -2.79497 0 0 701300. 2426.64 0.15 0.04 0.0133805 0.0117437 119 26 61 31 31 31
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 2.35 0.02 7048 1 0.01 -1 -1 30076 -1 -1 31 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65000 29 32 316 268 1 154 92 17 17 289 -1 unnamed_device 0.09 808 0.13 0.00 2.26464 -77.7037 -2.26464 2.26464 0.49 0.000300264 0.000251015 0.04377 0.0370897 28 1868 19 6.64007e+06 389298 500653. 1732.36 0.47 0.0801867 0.0682752 1719 20 1023 1728 114217 26327 2.26071 2.26071 -89.9524 -2.26071 0 0 612192. 2118.31 0.13 0.03 0.0129047 0.01128 110 55 29 29 57 29
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 2.59 0.03 7268 1 0.01 -1 -1 30160 -1 -1 41 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65336 32 32 424 311 1 229 105 17 17 289 -1 unnamed_device 0.12 1227 0.20 0.00 3.41716 -120.15 -3.41716 3.41716 0.47 0.000384355 0.000339481 0.0626278 0.054006 30 2696 20 6.64007e+06 514878 526063. 1820.29 0.55 0.113313 0.098087 2296 21 1644 2655 154430 34107 3.56142 3.56142 -139.109 -3.56142 0 0 666494. 2306.21 0.14 0.04 0.0180996 0.0160478 181 26 128 32 27 27
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 2.94 0.02 7012 1 0.01 -1 -1 30112 -1 -1 37 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65548 32 32 404 318 1 198 101 17 17 289 -1 unnamed_device 0.11 967 0.19 0.00 2.8611 -101.063 -2.8611 2.8611 0.66 0.0003834 0.000332824 0.0628309 0.0535322 30 2259 25 6.64007e+06 464646 526063. 1820.29 0.57 0.123056 0.105865 1915 20 1536 2250 116371 27865 2.90117 2.90117 -116.858 -2.90117 0 0 666494. 2306.21 0.15 0.07 0.0274975 0.0244782 154 62 62 32 64 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 2.72 0.02 6900 1 0.01 -1 -1 30236 -1 -1 29 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65268 31 32 355 304 1 156 92 17 17 289 -1 unnamed_device 0.13 716 0.14 0.00 3.0163 -90.6188 -3.0163 3.0163 0.47 0.000308039 0.000266349 0.0512512 0.0437189 28 2176 43 6.64007e+06 364182 500653. 1732.36 0.80 0.104587 0.0891081 1664 22 1130 1920 144203 34665 3.15137 3.15137 -109.633 -3.15137 0 0 612192. 2118.31 0.13 0.04 0.0142757 0.0124284 114 77 0 0 89 31
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 2.84 0.02 7260 1 0.02 -1 -1 30244 -1 -1 24 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65300 31 32 393 311 1 194 87 17 17 289 -1 unnamed_device 0.11 924 0.16 0.00 3.0153 -94.4356 -3.0153 3.0153 0.47 0.000353793 0.000312197 0.0610546 0.0531994 28 2533 24 6.64007e+06 301392 500653. 1732.36 0.84 0.137631 0.120686 1883 19 1324 2277 138658 33734 2.85197 2.85197 -110.515 -2.85197 0 0 612192. 2118.31 0.14 0.04 0.0159722 0.0141533 147 59 60 30 62 31
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 2.82 0.03 7236 1 0.02 -1 -1 30332 -1 -1 23 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66088 31 32 457 373 1 193 86 17 17 289 -1 unnamed_device 0.25 1128 0.17 0.00 4.21121 -123.426 -4.21121 4.21121 0.50 0.000384399 0.000339964 0.0652219 0.0568469 32 2454 18 6.64007e+06 288834 554710. 1919.41 0.59 0.120889 0.105309 2214 18 1252 2079 129039 30316 4.09268 4.09268 -148.44 -4.09268 0 0 701300. 2426.64 0.15 0.04 0.0162585 0.0144681 150 111 0 0 124 31
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 2.64 0.02 7272 1 0.02 -1 -1 30196 -1 -1 23 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65496 31 32 415 335 1 188 86 17 17 289 -1 unnamed_device 0.19 750 0.14 0.00 4.04401 -105.585 -4.04401 4.04401 0.48 0.000372862 0.000329033 0.0552543 0.0482078 32 2505 25 6.64007e+06 288834 554710. 1919.41 0.57 0.106837 0.0932085 1862 20 1373 2230 149418 37357 4.23908 4.23908 -136.31 -4.23908 0 0 701300. 2426.64 0.15 0.04 0.0171885 0.0151446 144 86 31 31 89 31
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 2.54 0.03 7244 1 0.01 -1 -1 30200 -1 -1 34 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65580 31 32 393 311 1 193 97 17 17 289 -1 unnamed_device 0.10 1072 0.19 0.00 3.1043 -101.749 -3.1043 3.1043 0.50 0.00037063 0.000311625 0.0617522 0.052721 32 2309 20 6.64007e+06 426972 554710. 1919.41 0.51 0.107203 0.0921599 2157 22 1658 2716 188336 40873 2.88497 2.88497 -114.888 -2.88497 0 0 701300. 2426.64 0.15 0.05 0.0177199 0.0155839 147 58 60 31 62 31
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 2.52 0.03 7196 1 0.01 -1 -1 30424 -1 -1 37 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65244 32 32 408 320 1 198 101 17 17 289 -1 unnamed_device 0.09 1060 0.19 0.00 3.30796 -117.122 -3.30796 3.30796 0.47 0.000355117 0.00031154 0.0628978 0.0536836 28 2782 23 6.64007e+06 464646 500653. 1732.36 0.54 0.110107 0.0945801 2375 20 1734 2751 190671 42096 3.65863 3.65863 -144.472 -3.65863 0 0 612192. 2118.31 0.14 0.05 0.0158808 0.0139616 156 42 64 32 64 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 2.62 0.05 7380 1 0.01 -1 -1 30332 -1 -1 41 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66148 32 32 497 381 1 232 105 17 17 289 -1 unnamed_device 0.12 1250 0.20 0.00 3.35016 -119.194 -3.35016 3.35016 0.47 0.000427694 0.000378801 0.0657559 0.0567638 32 2818 22 6.64007e+06 514878 554710. 1919.41 0.54 0.122293 0.10639 2396 19 1861 2890 190238 41680 3.56143 3.56143 -137.719 -3.56143 0 0 701300. 2426.64 0.15 0.05 0.0189123 0.0167845 185 91 62 32 96 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 2.59 0.03 6972 1 0.02 -1 -1 30244 -1 -1 18 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65172 31 32 307 252 1 158 81 17 17 289 -1 unnamed_device 0.13 752 0.12 0.00 3.0343 -96.7196 -3.0343 3.0343 0.53 0.0002885 0.000252382 0.0458065 0.0396744 32 1883 16 6.64007e+06 226044 554710. 1919.41 0.49 0.0821887 0.0710932 1660 22 1111 1755 134706 30679 3.07817 3.07817 -117.006 -3.07817 0 0 701300. 2426.64 0.15 0.04 0.0144267 0.0127002 116 24 62 31 31 31
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 2.75 0.03 7068 1 0.02 -1 -1 30252 -1 -1 37 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65352 31 32 397 313 1 196 100 17 17 289 -1 unnamed_device 0.12 1052 0.20 0.00 3.42816 -117.304 -3.42816 3.42816 0.57 0.000348488 0.00030534 0.0636567 0.0546566 32 2433 22 6.64007e+06 464646 554710. 1919.41 0.52 0.11153 0.0963341 2150 21 1722 2736 184873 41563 3.81163 3.81163 -139.3 -3.81163 0 0 701300. 2426.64 0.15 0.05 0.0167431 0.0147829 151 59 62 31 62 31
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 2.86 0.02 7008 1 0.01 -1 -1 30344 -1 -1 34 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65704 32 32 398 314 1 196 98 17 17 289 -1 unnamed_device 0.09 1036 0.18 0.00 2.9841 -96.8691 -2.9841 2.9841 0.60 0.000361062 0.000317385 0.0607285 0.0517485 32 2576 24 6.64007e+06 426972 554710. 1919.41 0.58 0.115053 0.0986658 2318 19 1580 2663 183810 42001 3.04797 3.04797 -117.72 -3.04797 0 0 701300. 2426.64 0.15 0.05 0.0159032 0.0140491 149 54 62 32 62 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 2.60 0.03 7008 1 0.01 -1 -1 30032 -1 -1 22 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65568 32 32 346 258 1 194 86 17 17 289 -1 unnamed_device 0.06 975 0.17 0.00 3.41716 -118.828 -3.41716 3.41716 0.49 0.000336408 0.000296483 0.0581981 0.0506668 32 2894 23 6.64007e+06 276276 554710. 1919.41 0.57 0.104599 0.0910709 2274 22 1982 3521 241870 55395 3.84463 3.84463 -147.635 -3.84463 0 0 701300. 2426.64 0.16 0.06 0.0171731 0.0152276 152 -1 128 32 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 2.59 0.03 7124 1 0.01 -1 -1 30320 -1 -1 35 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65476 32 32 425 344 1 190 99 17 17 289 -1 unnamed_device 0.12 921 0.18 0.00 2.7537 -96.4542 -2.7537 2.7537 0.49 0.000362472 0.000318423 0.0624654 0.0533772 32 2327 21 6.64007e+06 439530 554710. 1919.41 0.52 0.109571 0.0939116 1908 19 1305 1934 133578 30966 2.84297 2.84297 -116.216 -2.84297 0 0 701300. 2426.64 0.15 0.04 0.0156552 0.0138097 146 81 25 25 96 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 2.57 0.03 7128 1 0.01 -1 -1 30124 -1 -1 36 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66036 32 32 396 312 1 194 100 17 17 289 -1 unnamed_device 0.12 943 0.19 0.00 2.7647 -96.5063 -2.7647 2.7647 0.47 0.000412356 0.00036676 0.0643335 0.0550403 32 2329 24 6.64007e+06 452088 554710. 1919.41 0.52 0.111963 0.0963189 1981 20 1504 2531 167335 37864 2.79857 2.79857 -114.385 -2.79857 0 0 701300. 2426.64 0.15 0.04 0.0163518 0.0144559 147 58 64 32 60 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 2.68 0.02 7212 1 0.01 -1 -1 30156 -1 -1 39 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65512 32 32 406 319 1 200 103 17 17 289 -1 unnamed_device 0.10 1128 0.19 0.00 2.8299 -102.771 -2.8299 2.8299 0.48 0.000438512 0.000370778 0.0624388 0.0533262 32 2614 22 6.64007e+06 489762 554710. 1919.41 0.54 0.111666 0.0961443 2169 22 1751 2783 179621 40967 2.87377 2.87377 -119.668 -2.87377 0 0 701300. 2426.64 0.19 0.05 0.0178244 0.015728 157 61 63 32 64 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 2.63 0.03 7040 1 0.02 -1 -1 30272 -1 -1 38 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65180 32 32 377 289 1 194 102 17 17 289 -1 unnamed_device 0.07 985 0.18 0.00 3.46736 -119.5 -3.46736 3.46736 0.49 0.000351647 0.000308563 0.0578633 0.0496163 32 2593 22 6.64007e+06 477204 554710. 1919.41 0.58 0.104359 0.0901214 2194 22 1775 2828 196164 44957 3.82563 3.82563 -144.272 -3.82563 0 0 701300. 2426.64 0.15 0.05 0.0166789 0.0147214 153 21 96 32 32 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 2.77 0.02 7240 1 0.02 -1 -1 30228 -1 -1 39 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65412 32 32 408 320 1 197 103 17 17 289 -1 unnamed_device 0.10 960 0.19 0.00 3.41536 -118.294 -3.41536 3.41536 0.47 0.000350932 0.000308449 0.0622142 0.0534616 28 2786 23 6.64007e+06 489762 500653. 1732.36 0.67 0.111463 0.0959331 2321 19 1730 2727 192710 44139 3.88683 3.88683 -148.304 -3.88683 0 0 612192. 2118.31 0.13 0.05 0.0169434 0.0148732 155 50 64 32 64 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 2.72 0.03 7164 1 0.02 -1 -1 30328 -1 -1 36 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65844 31 32 451 369 1 193 99 17 17 289 -1 unnamed_device 0.16 1001 0.20 0.00 3.76575 -111.673 -3.76575 3.76575 0.50 0.00038092 0.000332277 0.0684562 0.0588733 30 2746 21 6.64007e+06 452088 526063. 1820.29 0.60 0.120303 0.103762 2111 18 1132 2025 116956 27423 3.66143 3.66143 -131.361 -3.66143 0 0 666494. 2306.21 0.14 0.04 0.0158469 0.0140701 147 110 0 0 122 31
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 2.70 0.02 7080 1 0.02 -1 -1 30348 -1 -1 22 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66076 32 32 433 347 1 195 86 17 17 289 -1 unnamed_device 0.15 984 0.17 0.00 3.50235 -109.497 -3.50235 3.50235 0.49 0.00038556 0.000341146 0.0659588 0.0577872 32 2462 19 6.64007e+06 276276 554710. 1919.41 0.53 0.114915 0.100495 2057 22 1585 2949 188014 42867 3.45022 3.45022 -129.27 -3.45022 0 0 701300. 2426.64 0.17 0.06 0.0237202 0.020943 150 86 32 32 94 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 2.48 0.02 6812 1 0.01 -1 -1 30304 -1 -1 31 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65268 32 32 313 256 1 166 95 17 17 289 -1 unnamed_device 0.07 773 0.14 0.00 2.7427 -96.19 -2.7427 2.7427 0.50 0.000321511 0.000280239 0.0472312 0.0403342 30 2134 20 6.64007e+06 389298 526063. 1820.29 0.53 0.0851151 0.0729166 1766 21 1134 1725 105177 25020 2.91877 2.91877 -114.756 -2.91877 0 0 666494. 2306.21 0.14 0.03 0.0133237 0.0116833 125 20 63 32 32 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 4.09 0.02 6988 1 0.02 -1 -1 30040 -1 -1 18 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65268 32 32 371 315 1 164 82 17 17 289 -1 unnamed_device 0.14 648 0.13 0.00 2.7819 -94.0079 -2.7819 2.7819 0.59 0.000386135 0.000341692 0.0578356 0.0499572 36 2162 28 6.64007e+06 226044 612192. 2118.31 1.83 0.13919 0.118799 1427 20 1091 1753 119700 29594 2.87497 2.87497 -109.807 -2.87497 0 0 782063. 2706.10 0.17 0.04 0.014914 0.0131441 121 91 0 0 94 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 3.28 0.03 7276 1 0.01 -1 -1 30452 -1 -1 42 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66208 32 32 470 352 1 233 106 17 17 289 -1 unnamed_device 0.09 1213 0.23 0.00 4.02462 -135.277 -4.02462 4.02462 0.47 0.000475352 0.000424872 0.0749195 0.0645925 30 3520 40 6.64007e+06 527436 526063. 1820.29 1.08 0.147321 0.126965 2560 19 2034 3433 220267 51683 4.63748 4.63748 -168.047 -4.63748 0 0 666494. 2306.21 0.16 0.06 0.0226196 0.0202186 189 53 96 32 64 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 2.60 0.03 7036 1 0.01 -1 -1 30012 -1 -1 33 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65008 32 32 369 285 1 194 97 17 17 289 -1 unnamed_device 0.14 873 0.17 0.00 2.7849 -96.358 -2.7849 2.7849 0.47 0.000346113 0.000299437 0.0588167 0.0503893 32 2580 28 6.64007e+06 414414 554710. 1919.41 0.55 0.108402 0.09343 1966 18 1521 2254 159042 39382 3.13377 3.13377 -118.112 -3.13377 0 0 701300. 2426.64 0.15 0.04 0.0145352 0.0128606 148 31 92 32 32 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 2.61 0.02 7012 1 0.01 -1 -1 30104 -1 -1 31 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65108 30 32 299 247 1 158 93 17 17 289 -1 unnamed_device 0.09 659 0.14 0.00 2.8079 -90.684 -2.8079 2.8079 0.47 0.000298284 0.000259005 0.0489511 0.041634 28 2032 22 6.64007e+06 389298 500653. 1732.36 0.59 0.0882892 0.0753847 1814 22 1309 1969 163411 43676 3.37177 3.37177 -123.155 -3.37177 0 0 612192. 2118.31 0.13 0.04 0.0136996 0.0119743 116 29 60 30 30 30
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 3.84 0.03 7288 1 0.02 -1 -1 30548 -1 -1 45 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66348 32 32 532 414 1 232 109 17 17 289 -1 unnamed_device 0.22 1217 0.22 0.00 4.02462 -139.405 -4.02462 4.02462 0.57 0.000442246 0.000391044 0.0717523 0.0620113 26 3370 38 6.64007e+06 565110 477104. 1650.88 1.43 0.149263 0.128765 2790 21 2381 3589 280601 60211 4.73168 4.73168 -174.221 -4.73168 0 0 585099. 2024.56 0.16 0.06 0.0216377 0.0190475 188 109 32 32 128 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 2.65 0.02 7116 1 0.00 -1 -1 30032 -1 -1 38 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65560 32 32 377 289 1 194 102 17 17 289 -1 unnamed_device 0.17 1037 0.16 0.00 3.41536 -121.717 -3.41536 3.41536 0.48 0.000355735 0.000313209 0.0518299 0.0446316 32 2419 23 6.64007e+06 477204 554710. 1919.41 0.52 0.099907 0.0866653 2114 21 1821 2688 180857 41316 3.61523 3.61523 -142.423 -3.61523 0 0 701300. 2426.64 0.15 0.05 0.0172276 0.0152587 153 31 96 32 32 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 2.42 0.02 6832 1 0.01 -1 -1 29992 -1 -1 32 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64948 32 32 284 226 1 164 96 17 17 289 -1 unnamed_device 0.05 771 0.15 0.00 2.7647 -98.0689 -2.7647 2.7647 0.47 0.000285321 0.000247733 0.0494362 0.0422194 30 2048 26 6.64007e+06 401856 526063. 1820.29 0.55 0.0893403 0.0766077 1723 20 1204 1920 114627 27480 2.92977 2.92977 -117.739 -2.92977 0 0 666494. 2306.21 0.15 0.04 0.0126237 0.0111444 124 -1 96 32 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 2.80 0.03 7364 1 0.02 -1 -1 30444 -1 -1 44 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65664 32 32 439 321 1 235 108 17 17 289 -1 unnamed_device 0.12 1271 0.22 0.00 3.99342 -139.044 -3.99342 3.99342 0.49 0.000395288 0.000348909 0.0663649 0.0572552 32 3079 22 6.64007e+06 552552 554710. 1919.41 0.59 0.120242 0.103954 2649 23 2432 3760 281472 58895 4.41588 4.41588 -163.457 -4.41588 0 0 701300. 2426.64 0.15 0.06 0.0205091 0.018159 191 26 128 32 32 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 2.48 0.02 6824 1 0.01 -1 -1 30020 -1 -1 17 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65252 32 32 284 226 1 162 81 17 17 289 -1 unnamed_device 0.06 742 0.15 0.00 2.8039 -100.486 -2.8039 2.8039 0.49 0.000289953 0.000253459 0.0533133 0.0461527 32 1916 20 6.64007e+06 213486 554710. 1919.41 0.54 0.100253 0.0870115 1678 19 1344 2125 145907 34255 2.97697 2.97697 -120.038 -2.97697 0 0 701300. 2426.64 0.15 0.04 0.0124756 0.0109783 121 -1 96 32 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 2.56 0.03 6908 1 0.01 -1 -1 30076 -1 -1 31 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65264 30 32 299 247 1 157 93 17 17 289 -1 unnamed_device 0.09 851 0.14 0.00 2.7427 -94.5202 -2.7427 2.7427 0.49 0.000288128 0.000251486 0.047584 0.0406505 32 1900 19 6.64007e+06 389298 554710. 1919.41 0.49 0.0835115 0.0718056 1716 17 1085 1657 117571 25807 2.81877 2.81877 -110.018 -2.81877 0 0 701300. 2426.64 0.23 0.05 0.0187127 0.016412 113 29 60 30 30 30
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 2.64 0.04 7092 1 0.01 -1 -1 30160 -1 -1 34 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65312 29 32 397 323 1 182 95 17 17 289 -1 unnamed_device 0.16 818 0.15 0.00 2.9701 -85.7246 -2.9701 2.9701 0.49 0.000347399 0.000306024 0.0507918 0.043361 28 2113 20 6.64007e+06 426972 500653. 1732.36 0.50 0.0964048 0.0828224 1826 21 1338 2252 131814 32913 3.17956 3.17956 -109.183 -3.17956 0 0 612192. 2118.31 0.13 0.04 0.0167539 0.0147628 134 81 29 29 85 29
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 3.32 0.02 7012 1 0.01 -1 -1 30248 -1 -1 22 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66044 32 32 408 320 1 194 86 17 17 289 -1 unnamed_device 0.15 827 0.15 0.00 3.37836 -115.525 -3.37836 3.37836 0.47 0.000383224 0.000340027 0.0612684 0.0537509 28 2932 48 6.64007e+06 276276 500653. 1732.36 1.28 0.131594 0.11404 2043 24 1856 2649 237307 53484 3.96783 3.96783 -149.873 -3.96783 0 0 612192. 2118.31 0.13 0.06 0.0195589 0.0172905 151 53 64 32 64 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 3.12 0.02 7208 1 0.02 -1 -1 30332 -1 -1 36 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65436 32 32 408 320 1 195 100 17 17 289 -1 unnamed_device 0.19 1038 0.24 0.00 3.37316 -118.76 -3.37316 3.37316 0.59 0.000539243 0.000470945 0.0812006 0.0696871 32 2519 25 6.64007e+06 452088 554710. 1919.41 0.66 0.148125 0.127941 2185 19 1811 2938 202026 44314 3.48403 3.48403 -136.881 -3.48403 0 0 701300. 2426.64 0.15 0.05 0.0171267 0.015256 154 55 64 32 64 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 2.43 0.02 7152 1 0.01 -1 -1 30320 -1 -1 32 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65300 32 32 346 288 1 161 96 17 17 289 -1 unnamed_device 0.09 764 0.13 0.00 2.8299 -98.4434 -2.8299 2.8299 0.48 0.000312987 0.000271758 0.0437136 0.0371175 28 1985 22 6.64007e+06 401856 500653. 1732.36 0.51 0.0836543 0.0714305 1823 22 1307 2016 139519 32005 2.83957 2.83957 -119.504 -2.83957 0 0 612192. 2118.31 0.13 0.04 0.0146206 0.0127883 122 55 32 32 64 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 2.57 0.02 7100 1 0.01 -1 -1 30176 -1 -1 17 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64932 31 32 355 304 1 152 80 17 17 289 -1 unnamed_device 0.15 878 0.13 0.00 2.9591 -94.506 -2.9591 2.9591 0.50 0.00045549 0.000393656 0.0483429 0.0416552 30 2007 19 6.64007e+06 213486 526063. 1820.29 0.51 0.0887004 0.0763083 1764 19 1024 1900 114588 25850 2.59537 2.59537 -106.051 -2.59537 0 0 666494. 2306.21 0.14 0.03 0.0140165 0.0123975 109 82 0 0 89 31
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 3.15 0.03 7172 1 0.02 -1 -1 30212 -1 -1 34 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65772 30 32 377 300 1 186 96 17 17 289 -1 unnamed_device 0.09 843 0.18 0.00 2.7427 -88.2698 -2.7427 2.7427 0.49 0.000335278 0.000295086 0.0648338 0.0556498 34 2211 23 6.64007e+06 426972 585099. 2024.56 1.05 0.159244 0.137291 1687 17 1021 1721 119234 28023 2.93997 2.93997 -107.041 -2.93997 0 0 742403. 2568.87 0.16 0.03 0.0139106 0.0124 138 52 60 30 57 30
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 2.53 0.02 7088 1 0.01 -1 -1 30136 -1 -1 32 28 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65252 28 32 337 265 1 180 92 17 17 289 -1 unnamed_device 0.08 946 0.17 0.00 3.65556 -106.662 -3.65556 3.65556 0.48 0.000322298 0.000273224 0.0573104 0.0491397 32 2162 21 6.64007e+06 401856 554710. 1919.41 0.51 0.101199 0.0873733 2010 23 1544 2278 161181 36253 3.73342 3.73342 -129.364 -3.73342 0 0 701300. 2426.64 0.19 0.04 0.0157206 0.0138531 134 20 84 28 28 28
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 3.58 0.02 7084 1 0.01 -1 -1 30076 -1 -1 19 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65052 30 32 328 276 1 157 81 17 17 289 -1 unnamed_device 0.14 623 0.12 0.00 2.8131 -90.4696 -2.8131 2.8131 0.47 0.000304302 0.000266362 0.0497122 0.0430487 34 2101 43 6.64007e+06 238602 585099. 2024.56 1.52 0.148438 0.127614 1540 22 1356 2314 173103 42851 3.08417 3.08417 -113.173 -3.08417 0 0 742403. 2568.87 0.16 0.05 0.0148419 0.0129736 114 58 30 30 60 30
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 2.56 0.02 7016 1 0.02 -1 -1 30080 -1 -1 17 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65024 32 32 362 309 1 158 81 17 17 289 -1 unnamed_device 0.12 887 0.12 0.00 2.9653 -93.1378 -2.9653 2.9653 0.47 0.000318528 0.000279124 0.0488658 0.042393 32 2037 25 6.64007e+06 213486 554710. 1919.41 0.56 0.103693 0.0896955 1749 19 1045 1834 127702 29021 2.85877 2.85877 -110.878 -2.85877 0 0 701300. 2426.64 0.15 0.04 0.0165722 0.0146012 114 88 0 0 91 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 2.54 0.03 7056 1 0.02 -1 -1 30008 -1 -1 37 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65380 31 32 337 253 1 196 100 17 17 289 -1 unnamed_device 0.06 1091 0.19 0.00 3.37316 -114.931 -3.37316 3.37316 0.48 0.000325138 0.00028516 0.056687 0.0487275 32 2558 23 6.64007e+06 464646 554710. 1919.41 0.53 0.100523 0.0869339 2131 21 1775 2883 189216 43475 3.71643 3.71643 -138.768 -3.71643 0 0 701300. 2426.64 0.15 0.04 0.0155567 0.0137703 152 -1 124 31 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 2.63 0.03 7216 1 0.01 -1 -1 30352 -1 -1 36 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65616 32 32 408 320 1 197 100 17 17 289 -1 unnamed_device 0.13 1003 0.20 0.00 3.31896 -115.972 -3.31896 3.31896 0.49 0.000357748 0.000314089 0.0648547 0.055616 32 2641 24 6.64007e+06 452088 554710. 1919.41 0.54 0.112814 0.0972467 2226 21 1863 3063 213472 48494 3.64943 3.64943 -141.498 -3.64943 0 0 701300. 2426.64 0.16 0.05 0.0172851 0.0152809 155 57 64 32 64 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 2.77 0.03 7172 1 0.01 -1 -1 30092 -1 -1 36 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65556 32 32 408 320 1 194 100 17 17 289 -1 unnamed_device 0.11 998 0.19 0.00 3.40616 -117.596 -3.40616 3.40616 0.48 0.000374228 0.000330352 0.0638249 0.0551358 32 2924 26 6.64007e+06 452088 554710. 1919.41 0.68 0.115164 0.0999753 2244 22 1786 3054 198878 45511 3.72443 3.72443 -142.355 -3.72443 0 0 701300. 2426.64 0.15 0.05 0.0177587 0.0157381 153 62 64 32 64 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 4.20 0.02 7064 1 0.01 -1 -1 30052 -1 -1 38 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65652 32 32 400 316 1 196 102 17 17 289 -1 unnamed_device 0.12 952 0.21 0.00 3.26396 -106.761 -3.26396 3.26396 0.59 0.000515326 0.000448836 0.0763815 0.0653461 36 2629 29 6.64007e+06 477204 612192. 2118.31 1.85 0.201054 0.174229 2006 21 1537 2698 201257 51120 3.70683 3.70683 -127.441 -3.70683 0 0 782063. 2706.10 0.17 0.05 0.0173126 0.0152626 149 62 60 30 64 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 2.57 0.02 6868 1 0.01 -1 -1 30020 -1 -1 19 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65260 30 32 299 247 1 156 81 17 17 289 -1 unnamed_device 0.16 725 0.13 0.00 2.7819 -92.8924 -2.7819 2.7819 0.48 0.000287654 0.000252244 0.0487269 0.0421214 32 1864 18 6.64007e+06 238602 554710. 1919.41 0.49 0.0856189 0.0741742 1681 18 1226 1917 137826 31866 2.96397 2.96397 -111.251 -2.96397 0 0 701300. 2426.64 0.17 0.04 0.0126193 0.01104 113 29 60 30 30 30
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 2.54 0.02 7056 1 0.02 -1 -1 30180 -1 -1 24 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65756 30 32 386 306 1 191 86 17 17 289 -1 unnamed_device 0.11 712 0.14 0.00 3.36736 -104.322 -3.36736 3.36736 0.47 0.000350468 0.000309535 0.0538737 0.0466518 32 2344 26 6.64007e+06 301392 554710. 1919.41 0.55 0.102674 0.0890893 1794 20 1688 2517 164097 41984 4.11143 4.11143 -138.07 -4.11143 0 0 701300. 2426.64 0.15 0.05 0.0171509 0.0151923 147 58 60 30 60 30
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 2.74 0.03 7176 1 0.01 -1 -1 30536 -1 -1 41 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65284 32 32 470 382 1 198 105 17 17 289 -1 unnamed_device 0.16 1122 0.19 0.00 3.43916 -122.703 -3.43916 3.43916 0.47 0.000392064 0.000340208 0.060547 0.051844 30 2543 22 6.64007e+06 514878 526063. 1820.29 0.55 0.112543 0.096781 2155 19 1480 2400 134354 30243 3.51703 3.51703 -140.874 -3.51703 0 0 666494. 2306.21 0.18 0.04 0.0166465 0.0147769 156 106 0 0 128 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 2.70 0.02 7128 1 0.02 -1 -1 30312 -1 -1 33 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66144 31 32 427 343 1 189 96 17 17 289 -1 unnamed_device 0.16 1045 0.18 0.00 3.63355 -117.353 -3.63355 3.63355 0.49 0.000380003 0.000334812 0.0642125 0.0555636 32 2439 21 6.64007e+06 414414 554710. 1919.41 0.52 0.112806 0.0979949 2042 20 1486 2410 156535 36059 3.78762 3.78762 -141.103 -3.78762 0 0 701300. 2426.64 0.15 0.04 0.0172843 0.015345 147 79 31 31 93 31
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 2.55 0.02 7256 1 0.02 -1 -1 30340 -1 -1 32 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65292 30 32 407 331 1 182 94 17 17 289 -1 unnamed_device 0.10 822 0.17 0.00 3.0573 -89.9701 -3.0573 3.0573 0.49 0.000370384 0.000322149 0.0599598 0.0517462 32 2355 25 6.64007e+06 401856 554710. 1919.41 0.53 0.108878 0.0942404 1854 21 1507 2484 171556 39204 3.05517 3.05517 -112.201 -3.05517 0 0 701300. 2426.64 0.15 0.04 0.0170704 0.0150793 138 83 26 26 90 30
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 2.91 0.03 7212 1 0.01 -1 -1 30196 -1 -1 22 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65340 32 32 408 320 1 198 86 17 17 289 -1 unnamed_device 0.22 908 0.16 0.00 3.30796 -113.396 -3.30796 3.30796 0.47 0.000369917 0.000327194 0.0651843 0.0570211 32 3115 27 6.64007e+06 276276 554710. 1919.41 0.66 0.121388 0.105706 2350 22 1983 3394 272839 61569 4.06023 4.06023 -149.139 -4.06023 0 0 701300. 2426.64 0.15 0.06 0.0177941 0.0157127 155 58 64 32 64 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 3.09 0.03 7220 1 0.01 -1 -1 30068 -1 -1 36 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65316 29 32 391 320 1 179 97 17 17 289 -1 unnamed_device 0.10 689 0.13 0.00 2.7859 -82.2878 -2.7859 2.7859 0.47 0.000380122 0.000327849 0.0528478 0.0452862 36 1685 30 6.64007e+06 452088 612192. 2118.31 1.12 0.14192 0.122025 1309 22 1325 2129 116004 30052 2.64257 2.64257 -91.7889 -2.64257 0 0 782063. 2706.10 0.16 0.04 0.0165243 0.0145579 136 81 26 26 85 29
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 2.57 0.02 6784 1 0.02 -1 -1 29940 -1 -1 17 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64900 32 32 284 226 1 156 81 17 17 289 -1 unnamed_device 0.10 848 0.13 0.00 2.7819 -101.848 -2.7819 2.7819 0.49 0.000304618 0.000268281 0.0493286 0.0427036 32 1922 21 6.64007e+06 213486 554710. 1919.41 0.51 0.0883992 0.0767205 1655 18 1147 1727 113248 25237 2.78177 2.78177 -117.541 -2.78177 0 0 701300. 2426.64 0.15 0.03 0.0129605 0.0115216 115 -1 96 32 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 2.71 0.03 7096 1 0.02 -1 -1 30080 -1 -1 35 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65316 32 32 408 320 1 194 99 17 17 289 -1 unnamed_device 0.18 1093 0.18 0.00 3.34716 -119.139 -3.34716 3.34716 0.47 0.000380564 0.000333269 0.0600805 0.0516554 28 2715 21 6.64007e+06 439530 500653. 1732.36 0.55 0.109058 0.0943758 2372 19 1424 2274 162867 35218 3.66543 3.66543 -145.587 -3.66543 0 0 612192. 2118.31 0.13 0.05 0.0173285 0.0154603 152 62 64 32 64 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 2.90 0.04 7192 1 0.01 -1 -1 30032 -1 -1 23 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65548 32 32 408 320 1 201 87 17 17 289 -1 unnamed_device 0.12 798 0.17 0.00 3.38936 -113.82 -3.38936 3.38936 0.50 0.000369929 0.000327562 0.067026 0.0585837 32 2420 29 6.64007e+06 288834 554710. 1919.41 0.58 0.119814 0.104374 1867 21 2068 3223 208150 51143 3.76683 3.76683 -140.328 -3.76683 0 0 701300. 2426.64 0.22 0.08 0.0287443 0.025375 158 62 64 32 64 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 2.70 0.03 7028 1 0.01 -1 -1 30212 -1 -1 30 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65192 32 32 316 268 1 158 94 17 17 289 -1 unnamed_device 0.13 792 0.14 0.00 3.0573 -93.2996 -3.0573 3.0573 0.49 0.000287768 0.000249103 0.047171 0.0400662 26 2011 25 6.64007e+06 376740 477104. 1650.88 0.69 0.089153 0.0758833 1697 16 821 1316 98600 23440 2.78257 2.78257 -106.914 -2.78257 0 0 585099. 2024.56 0.13 0.03 0.0124118 0.0108988 112 47 32 32 54 27
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 2.45 0.03 6944 1 0.01 -1 -1 30004 -1 -1 18 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64884 31 32 277 222 1 160 81 17 17 289 -1 unnamed_device 0.08 844 0.12 0.00 2.8321 -98.7011 -2.8321 2.8321 0.47 0.000287675 0.00025202 0.0453812 0.0393628 28 1972 21 6.64007e+06 226044 500653. 1732.36 0.50 0.0850183 0.0735785 1718 21 1363 2190 142919 33260 3.08417 3.08417 -120.359 -3.08417 0 0 612192. 2118.31 0.14 0.04 0.0134126 0.0117631 118 -1 93 31 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 2.63 0.03 7064 1 0.01 -1 -1 30020 -1 -1 33 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65588 32 32 382 304 1 188 97 17 17 289 -1 unnamed_device 0.11 787 0.16 0.00 3.32336 -106.794 -3.32336 3.32336 0.47 0.000584892 0.000512686 0.0512542 0.043963 32 2153 21 6.64007e+06 414414 554710. 1919.41 0.60 0.0979579 0.0846178 1760 22 1614 2379 145175 36146 3.56943 3.56943 -127.09 -3.56943 0 0 701300. 2426.64 0.15 0.04 0.0169798 0.0149564 139 56 60 32 58 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 3.16 0.03 7220 1 0.02 -1 -1 30132 -1 -1 32 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65560 32 32 407 331 1 190 96 17 17 289 -1 unnamed_device 0.11 1001 0.13 0.00 3.95515 -113.331 -3.95515 3.95515 0.47 0.00037633 0.000329336 0.0469002 0.0404773 26 3052 30 6.64007e+06 401856 477104. 1650.88 1.11 0.102829 0.0885854 2346 20 1538 2442 193026 42906 3.96822 3.96822 -136.69 -3.96822 0 0 585099. 2024.56 0.18 0.08 0.0287195 0.0252478 140 81 28 28 88 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 4.30 0.03 7244 1 0.02 -1 -1 30192 -1 -1 37 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65672 32 32 400 286 1 228 101 17 17 289 -1 unnamed_device 0.09 1290 0.27 0.00 3.86842 -133.715 -3.86842 3.86842 0.58 0.000543551 0.000474425 0.0840929 0.0723086 26 3592 41 6.64007e+06 464646 477104. 1650.88 1.93 0.182013 0.157972 2784 20 2185 3495 256973 58448 5.02929 5.02929 -175.844 -5.02929 0 0 585099. 2024.56 0.13 0.06 0.0176824 0.0157203 179 -1 156 32 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 2.53 0.02 7248 1 0.01 -1 -1 30260 -1 -1 34 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65512 30 32 374 298 1 184 96 17 17 289 -1 unnamed_device 0.12 997 0.15 0.00 3.0493 -97.6687 -3.0493 3.0493 0.48 0.000344199 0.000302878 0.0497453 0.0423589 30 2182 23 6.64007e+06 426972 526063. 1820.29 0.50 0.0943369 0.0810687 1834 20 1071 1754 83108 20668 2.86297 2.86297 -111.583 -2.86297 0 0 666494. 2306.21 0.14 0.03 0.0151551 0.0134489 138 47 60 30 56 30
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 2.36 0.02 7028 1 0.01 -1 -1 30148 -1 -1 20 27 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64888 27 32 275 232 1 143 79 17 17 289 -1 unnamed_device 0.07 690 0.13 0.00 3.0555 -84.5123 -3.0555 3.0555 0.48 0.00027212 0.000237315 0.0489297 0.0420558 28 1666 20 6.64007e+06 251160 500653. 1732.36 0.49 0.0837668 0.0721221 1460 22 1077 1628 109839 26085 3.23557 3.23557 -110.126 -3.23557 0 0 612192. 2118.31 0.13 0.03 0.0129397 0.0113333 103 26 54 27 27 27
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 3.48 0.02 7212 1 0.01 -1 -1 30504 -1 -1 42 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66056 32 32 494 379 1 232 106 17 17 289 -1 unnamed_device 0.12 1300 0.24 0.00 3.94095 -122.256 -3.94095 3.94095 0.51 0.00042714 0.00037715 0.0745004 0.0643821 28 3627 30 6.64007e+06 527436 500653. 1732.36 1.16 0.140994 0.121561 3003 22 1988 3598 284595 61536 3.73963 3.73963 -144.796 -3.73963 0 0 612192. 2118.31 0.17 0.06 0.021443 0.019003 185 85 62 31 95 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 2.79 0.03 7164 1 0.02 -1 -1 30604 -1 -1 22 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65540 31 32 457 373 1 188 85 17 17 289 -1 unnamed_device 0.16 803 0.18 0.00 3.70016 -112.181 -3.70016 3.70016 0.47 0.000394211 0.000348909 0.0704391 0.0614791 30 2106 22 6.64007e+06 276276 526063. 1820.29 0.67 0.146195 0.127224 1657 22 1178 1999 112037 28451 3.81582 3.81582 -134.188 -3.81582 0 0 666494. 2306.21 0.15 0.04 0.019569 0.0172286 145 105 0 0 124 31
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 2.48 0.02 6960 1 0.01 -1 -1 29984 -1 -1 16 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65488 32 32 356 305 1 150 80 17 17 289 -1 unnamed_device 0.14 710 0.12 0.00 2.9543 -89.5331 -2.9543 2.9543 0.48 0.000318604 0.000280531 0.0473165 0.0411184 32 1954 18 6.64007e+06 200928 554710. 1919.41 0.54 0.090202 0.078194 1690 22 1058 1734 126360 28798 2.74257 2.74257 -110.059 -2.74257 0 0 701300. 2426.64 0.16 0.04 0.0153116 0.0135224 108 86 0 0 89 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 3.12 0.02 6996 1 0.02 -1 -1 30000 -1 -1 32 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65376 32 32 365 283 1 196 96 17 17 289 -1 unnamed_device 0.11 1061 0.16 0.00 3.65525 -115.261 -3.65525 3.65525 0.51 0.000478421 0.000415653 0.051943 0.0445691 32 2487 21 6.64007e+06 401856 554710. 1919.41 0.67 0.129044 0.11226 2105 21 1555 2326 162091 36670 3.94222 3.94222 -138.744 -3.94222 0 0 701300. 2426.64 0.16 0.04 0.0165193 0.014651 146 31 90 30 32 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 2.84 0.02 7308 1 0.02 -1 -1 30384 -1 -1 38 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65848 31 32 445 338 1 220 101 17 17 289 -1 unnamed_device 0.13 1139 0.20 0.00 3.65376 -117.11 -3.65376 3.65376 0.47 0.000388548 0.000343446 0.0682223 0.0589771 32 2553 18 6.64007e+06 477204 554710. 1919.41 0.51 0.117115 0.101675 2320 24 1813 2789 196188 43432 3.68462 3.68462 -135.91 -3.68462 0 0 701300. 2426.64 0.16 0.05 0.0205995 0.0182195 173 50 87 31 62 31
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 2.74 0.03 7108 1 0.01 -1 -1 30104 -1 -1 34 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65380 30 32 376 300 1 186 96 17 17 289 -1 unnamed_device 0.08 1045 0.17 0.00 2.9701 -91.8128 -2.9701 2.9701 0.47 0.000345436 0.000304128 0.0549546 0.0473357 26 2751 25 6.64007e+06 426972 477104. 1650.88 0.73 0.103648 0.0890549 2190 20 1322 2316 150159 34951 3.02297 3.02297 -110.316 -3.02297 0 0 585099. 2024.56 0.13 0.04 0.016917 0.0150052 135 50 58 30 58 30
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 2.64 0.03 7016 1 0.00 -1 -1 30240 -1 -1 43 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65316 32 32 408 320 1 201 107 17 17 289 -1 unnamed_device 0.10 1131 0.21 0.00 3.35816 -118.389 -3.35816 3.35816 0.49 0.000355616 0.000312167 0.0657248 0.0563202 30 2437 22 6.64007e+06 539994 526063. 1820.29 0.52 0.112827 0.0973249 2056 19 1667 2801 135747 32548 3.60543 3.60543 -140.305 -3.60543 0 0 666494. 2306.21 0.17 0.05 0.0209767 0.0186524 158 61 64 32 64 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 3.16 0.03 7172 1 0.01 -1 -1 30112 -1 -1 40 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65360 32 32 406 319 1 200 104 17 17 289 -1 unnamed_device 0.14 997 0.31 0.00 2.7929 -98.631 -2.7929 2.7929 0.59 0.000651712 0.000563761 0.103056 0.0887796 32 2292 23 6.64007e+06 502320 554710. 1919.41 0.74 0.167097 0.144693 1944 23 1609 2416 160032 36612 2.78757 2.78757 -113.859 -2.78757 0 0 701300. 2426.64 0.15 0.04 0.0181777 0.016003 157 61 63 32 64 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 2.43 0.02 6904 1 0.01 -1 -1 30096 -1 -1 18 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64952 29 32 291 242 1 134 79 17 17 289 -1 unnamed_device 0.05 542 0.11 0.00 2.7361 -84.445 -2.7361 2.7361 0.47 0.000281409 0.000246092 0.0481952 0.0416153 32 1603 23 6.64007e+06 226044 554710. 1919.41 0.50 0.0856553 0.0739952 1269 23 1198 1698 129878 33015 3.07557 3.07557 -105.81 -3.07557 0 0 701300. 2426.64 0.15 0.04 0.0151029 0.0133031 97 28 58 29 29 29
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 2.65 0.02 6908 1 0.01 -1 -1 30020 -1 -1 17 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64980 32 32 335 291 1 154 81 17 17 289 -1 unnamed_device 0.12 659 0.11 0.00 3.21469 -85.2008 -3.21469 3.21469 0.51 0.000293982 0.00025676 0.0484053 0.0417106 32 1927 30 6.64007e+06 213486 554710. 1919.41 0.61 0.094379 0.0812453 1481 18 953 1275 110576 27322 3.19957 3.19957 -110.492 -3.19957 0 0 701300. 2426.64 0.15 0.03 0.0124982 0.0110298 110 79 0 0 82 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 2.48 0.03 7084 1 0.01 -1 -1 30160 -1 -1 38 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65280 31 32 367 283 1 196 101 17 17 289 -1 unnamed_device 0.07 972 0.19 0.00 3.59956 -114.245 -3.59956 3.59956 0.47 0.000339053 0.000296605 0.0599751 0.0514386 30 2215 23 6.64007e+06 477204 526063. 1820.29 0.52 0.105127 0.0907238 1938 23 1483 2583 150695 34765 3.57443 3.57443 -133.743 -3.57443 0 0 666494. 2306.21 0.14 0.04 0.0182413 0.0161989 152 29 93 31 31 31
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 2.40 0.02 7080 1 0.00 -1 -1 30220 -1 -1 31 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65064 29 32 301 258 1 150 92 17 17 289 -1 unnamed_device 0.13 808 0.12 0.00 2.9591 -85.9709 -2.9591 2.9591 0.48 0.000277111 0.000237633 0.0391126 0.0331106 26 1985 20 6.64007e+06 389298 477104. 1650.88 0.50 0.0736805 0.0627186 1754 18 1027 1638 118985 27223 2.89096 2.89096 -104.78 -2.89096 0 0 585099. 2024.56 0.13 0.03 0.0113134 0.0099069 108 48 29 29 52 26
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 2.47 0.02 7008 1 0.02 -1 -1 30040 -1 -1 17 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65292 32 32 315 257 1 160 81 17 17 289 -1 unnamed_device 0.08 807 0.13 0.00 2.8409 -101.579 -2.8409 2.8409 0.48 0.000301895 0.000264628 0.0493813 0.0429138 32 1960 24 6.64007e+06 213486 554710. 1919.41 0.52 0.0891647 0.0774148 1738 22 1502 2499 165870 38097 3.06097 3.06097 -120.923 -3.06097 0 0 701300. 2426.64 0.15 0.04 0.0143565 0.0126043 119 31 64 32 32 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 2.54 0.02 7236 1 0.02 -1 -1 30152 -1 -1 37 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65476 31 32 389 309 1 189 100 17 17 289 -1 unnamed_device 0.13 919 0.15 0.00 3.0995 -96.9336 -3.0995 3.0995 0.50 0.000375788 0.00032015 0.0517845 0.0442449 32 2201 21 6.64007e+06 464646 554710. 1919.41 0.52 0.0980593 0.0846062 1861 19 1581 2353 152579 35998 2.83697 2.83697 -113.277 -2.83697 0 0 701300. 2426.64 0.15 0.04 0.015283 0.0135546 143 60 58 31 62 31
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 2.50 0.02 6936 1 0.01 -1 -1 30124 -1 -1 17 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64856 31 32 310 264 1 147 80 17 17 289 -1 unnamed_device 0.14 604 0.14 0.00 2.70619 -81.8301 -2.70619 2.70619 0.48 0.000283878 0.000247641 0.0596716 0.0513646 30 1703 21 6.64007e+06 213486 526063. 1820.29 0.51 0.0975561 0.0839238 1308 18 854 1360 73877 19205 2.64057 2.64057 -95.5541 -2.64057 0 0 666494. 2306.21 0.14 0.03 0.0117763 0.0104683 106 49 31 31 53 31
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 3.34 0.01 7132 1 0.01 -1 -1 30168 -1 -1 33 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65608 32 32 384 308 1 184 97 17 17 289 -1 unnamed_device 0.15 804 0.19 0.00 2.7379 -90.5781 -2.7379 2.7379 0.57 0.000489211 0.000423189 0.0662335 0.0564629 30 2269 32 6.64007e+06 414414 526063. 1820.29 1.12 0.133118 0.114132 1683 18 1122 1724 102252 25111 2.79697 2.79697 -106.711 -2.79697 0 0 666494. 2306.21 0.15 0.04 0.0144989 0.012822 137 56 52 26 64 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 2.53 0.02 7264 1 0.01 -1 -1 30184 -1 -1 38 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65564 31 32 424 341 1 195 101 17 17 289 -1 unnamed_device 0.10 949 0.15 0.00 3.1105 -99.3895 -3.1105 3.1105 0.47 0.000400821 0.000337643 0.0521033 0.0442342 26 2471 25 6.64007e+06 477204 477104. 1650.88 0.60 0.105543 0.090575 2017 25 1715 2553 171965 40539 3.16937 3.16937 -125.478 -3.16937 0 0 585099. 2024.56 0.13 0.05 0.0198948 0.0174288 150 88 31 31 92 31
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 2.68 0.03 6936 1 0.01 -1 -1 30112 -1 -1 18 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64816 32 32 334 280 1 160 82 17 17 289 -1 unnamed_device 0.09 793 0.14 0.00 2.55679 -89.6661 -2.55679 2.55679 0.57 0.000308305 0.000269341 0.0521648 0.044761 26 2126 36 6.64007e+06 226044 477104. 1650.88 0.59 0.100645 0.0863009 1776 18 1109 1727 121212 27861 2.84377 2.84377 -111.643 -2.84377 0 0 585099. 2024.56 0.13 0.03 0.0128599 0.0113343 115 54 32 32 60 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 2.46 0.03 6940 1 0.01 -1 -1 30056 -1 -1 18 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65164 32 32 340 284 1 164 82 17 17 289 -1 unnamed_device 0.12 821 0.11 0.00 2.7819 -97.9745 -2.7819 2.7819 0.50 0.000567322 0.000516808 0.0398761 0.0344223 28 2194 22 6.64007e+06 226044 500653. 1732.36 0.52 0.081144 0.0700318 1923 18 1194 1936 134954 31254 2.85597 2.85597 -117.171 -2.85597 0 0 612192. 2118.31 0.13 0.04 0.013157 0.0115629 121 60 32 32 62 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 2.80 0.03 7020 1 0.01 -1 -1 30428 -1 -1 38 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65412 32 32 408 320 1 198 102 17 17 289 -1 unnamed_device 0.11 1019 0.20 0.00 3.33916 -118.283 -3.33916 3.33916 0.51 0.000356462 0.000312354 0.0668309 0.0574713 28 2648 26 6.64007e+06 477204 500653. 1732.36 0.72 0.120065 0.103192 2312 22 1913 2768 224550 48842 3.64343 3.64343 -142.797 -3.64343 0 0 612192. 2118.31 0.13 0.05 0.0177268 0.0156108 156 49 64 32 64 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 2.51 0.02 7108 1 0.02 -1 -1 30284 -1 -1 34 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65204 29 32 371 297 1 183 95 17 17 289 -1 unnamed_device 0.14 993 0.15 0.00 2.75119 -91.977 -2.75119 2.75119 0.47 0.000341912 0.00029414 0.0517835 0.0442303 30 1968 16 6.64007e+06 426972 526063. 1820.29 0.47 0.0923624 0.0795989 1758 18 1024 1558 81212 19382 2.79777 2.79777 -105.373 -2.79777 0 0 666494. 2306.21 0.17 0.03 0.0145777 0.0129427 135 54 56 29 58 29
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 2.59 0.02 7236 1 0.01 -1 -1 30360 -1 -1 39 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65396 32 32 470 382 1 200 103 17 17 289 -1 unnamed_device 0.17 1078 0.17 0.00 3.34716 -119.058 -3.34716 3.34716 0.47 0.000386868 0.000341404 0.0592834 0.050811 32 2620 25 6.64007e+06 489762 554710. 1919.41 0.54 0.112042 0.0966625 2348 23 1932 2893 230523 51379 3.71643 3.71643 -146.932 -3.71643 0 0 701300. 2426.64 0.15 0.06 0.0198404 0.0174472 158 117 0 0 128 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.09 0.02 6872 1 0.01 -1 -1 30068 -1 -1 17 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64880 31 32 261 214 1 146 80 17 17 289 -1 unnamed_device 0.05 620 0.10 0.00 2.50628 -81.4677 -2.50628 2.50628 0.50 0.000266052 0.000230039 0.0433748 0.0372844 34 1980 31 6.64007e+06 213486 585099. 2024.56 1.15 0.110689 0.0947922 1472 20 1121 1736 130580 33202 2.89017 2.89017 -103.953 -2.89017 0 0 742403. 2568.87 0.15 0.03 0.0119837 0.0105164 106 -1 85 31 0 0
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 3.82 0.03 7080 1 0.01 -1 -1 30104 -1 -1 33 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65480 32 32 419 339 1 190 97 17 17 289 -1 unnamed_device 0.18 849 0.15 0.00 3.80195 -109.188 -3.80195 3.80195 0.47 0.000369353 0.000325512 0.0609641 0.0528009 34 2622 39 6.64007e+06 414414 585099. 2024.56 1.67 0.158032 0.135914 1722 22 1292 1992 147967 35564 3.54062 3.54062 -123.564 -3.54062 0 0 742403. 2568.87 0.16 0.04 0.0181701 0.016064 143 89 28 28 92 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 2.51 0.03 6860 1 0.02 -1 -1 30008 -1 -1 17 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65396 32 32 377 319 1 155 81 17 17 289 -1 unnamed_device 0.17 867 0.13 0.00 2.8021 -101.987 -2.8021 2.8021 0.47 0.000421272 0.000372214 0.0544119 0.0474662 32 1902 20 6.64007e+06 213486 554710. 1919.41 0.50 0.0973148 0.0848118 1661 20 1346 2012 131151 29659 2.96897 2.96897 -121.217 -2.96897 0 0 701300. 2426.64 0.15 0.04 0.0154206 0.0135897 114 93 0 0 96 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 2.49 0.03 7104 1 0.01 -1 -1 30188 -1 -1 37 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65916 32 32 402 317 1 196 101 17 17 289 -1 unnamed_device 0.10 889 0.15 0.00 2.8299 -96.6404 -2.8299 2.8299 0.47 0.000391522 0.00034778 0.0487105 0.0417319 30 2157 16 6.64007e+06 464646 526063. 1820.29 0.51 0.0927467 0.08015 1759 17 1195 1803 81842 21685 2.82857 2.82857 -113.978 -2.82857 0 0 666494. 2306.21 0.15 0.03 0.0144888 0.0128914 151 59 61 32 64 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 2.81 0.02 7276 1 0.03 -1 -1 30488 -1 -1 45 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66176 32 32 501 383 1 232 109 17 17 289 -1 unnamed_device 0.15 1223 0.21 0.00 4.02462 -139.549 -4.02462 4.02462 0.47 0.000420166 0.000371735 0.0671314 0.0578782 28 3199 23 6.64007e+06 565110 500653. 1732.36 0.59 0.125179 0.108456 2809 23 2372 3669 271595 59714 5.01689 5.01689 -177.373 -5.01689 0 0 612192. 2118.31 0.16 0.08 0.0269264 0.0235691 188 81 64 32 96 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 2.27 0.03 6760 1 0.01 -1 -1 29980 -1 -1 15 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64656 30 32 249 232 1 118 77 17 17 289 -1 unnamed_device 0.05 516 0.09 0.00 2.10964 -65.621 -2.10964 2.10964 0.47 0.000234989 0.000203855 0.036269 0.0310453 32 1363 20 6.64007e+06 188370 554710. 1919.41 0.46 0.0657213 0.0561566 1088 20 698 968 78402 19898 1.98011 1.98011 -76.0948 -1.98011 0 0 701300. 2426.64 0.15 0.03 0.0103248 0.00891902 83 51 0 0 53 30
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 2.49 0.02 6896 1 0.02 -1 -1 30064 -1 -1 17 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65092 30 32 299 247 1 137 79 17 17 289 -1 unnamed_device 0.07 738 0.10 0.00 2.9683 -94.8986 -2.9683 2.9683 0.47 0.000288246 0.000252799 0.0408689 0.035553 30 1670 19 6.64007e+06 213486 526063. 1820.29 0.63 0.0844362 0.0733931 1397 17 761 1144 66712 15365 2.71377 2.71377 -106.652 -2.71377 0 0 666494. 2306.21 0.14 0.03 0.0115285 0.0102402 97 29 60 30 30 30
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 2.54 0.02 6952 1 0.00 -1 -1 29980 -1 -1 18 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64848 32 32 315 257 1 167 82 17 17 289 -1 unnamed_device 0.12 767 0.12 0.00 2.7647 -97.9487 -2.7647 2.7647 0.47 0.000304071 0.000265203 0.0465641 0.040253 32 2313 21 6.64007e+06 226044 554710. 1919.41 0.55 0.0865387 0.0748776 1918 19 1382 2374 171794 39849 3.02797 3.02797 -120.107 -3.02797 0 0 701300. 2426.64 0.15 0.04 0.0133746 0.0117438 126 31 64 32 32 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 2.39 0.03 6964 1 0.01 -1 -1 30148 -1 -1 34 25 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65000 25 32 259 222 1 138 91 17 17 289 -1 unnamed_device 0.05 557 0.13 0.00 2.7419 -73.3021 -2.7419 2.7419 0.49 0.000432496 0.000396699 0.0448869 0.0381852 32 1462 22 6.64007e+06 426972 554710. 1919.41 0.47 0.0766602 0.0652941 1245 20 1028 1506 100203 23164 2.75577 2.75577 -87.1817 -2.75577 0 0 701300. 2426.64 0.17 0.03 0.0111781 0.00976359 103 19 50 25 25 25
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 2.65 0.02 7092 1 0.01 -1 -1 30292 -1 -1 22 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65704 32 32 433 347 1 193 86 17 17 289 -1 unnamed_device 0.15 981 0.17 0.00 3.50535 -112.308 -3.50535 3.50535 0.47 0.000377744 0.000334798 0.0656306 0.0574058 32 2532 21 6.64007e+06 276276 554710. 1919.41 0.54 0.11473 0.100224 2083 21 1667 3026 193812 43769 3.68943 3.68943 -134.836 -3.68943 0 0 701300. 2426.64 0.15 0.05 0.0187506 0.0165145 148 84 32 32 94 32
+ fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 3.41 0.03 7096 1 0.01 -1 -1 30204 -1 -1 38 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65972 31 32 423 341 1 193 101 17 17 289 -1 unnamed_device 0.12 807 0.20 0.00 3.0933 -95.7283 -3.0933 3.0933 0.51 0.00037014 0.000325962 0.0765853 0.0652267 30 2682 32 6.64007e+06 477204 526063. 1820.29 1.20 0.165052 0.142387 1852 22 1655 2511 155803 39054 3.26777 3.26777 -118.014 -3.26777 0 0 666494. 2306.21 0.16 0.05 0.0206602 0.0183349 147 88 29 29 93 31
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 2.86 0.02 7224 1 0.01 -1 -1 30412 -1 -1 34 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65732 32 32 439 351 1 194 98 17 17 289 -1 unnamed_device 0.22 1117 0.25 0.00 3.16364 -112.842 -3.16364 3.16364 0.56 0.000384809 0.000340315 0.088042 0.076223 32 2629 26 6.65987e+06 431052 554710. 1919.41 0.56 0.142269 0.123613 2291 23 2071 3368 242327 56059 3.59411 3.59411 -141.269 -3.59411 0 0 701300. 2426.64 0.15 0.06 0.0198418 0.01751 151 80 32 32 96 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 2.73 0.02 7404 1 0.01 -1 -1 30244 -1 -1 21 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65556 30 32 412 333 1 186 83 17 17 289 -1 unnamed_device 0.28 992 0.16 0.00 3.4765 -107.063 -3.4765 3.4765 0.48 0.000365809 0.000322363 0.0612192 0.0534763 32 2342 22 6.65987e+06 266238 554710. 1919.41 0.53 0.108696 0.09477 2028 20 1716 2850 212555 49614 3.59551 3.59551 -130.628 -3.59551 0 0 701300. 2426.64 0.15 0.05 0.0173751 0.0154073 140 78 30 30 89 30
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 2.59 0.02 7196 1 0.01 -1 -1 30288 -1 -1 34 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65560 32 32 388 310 1 186 98 17 17 289 -1 unnamed_device 0.11 1038 0.16 0.00 2.80553 -98.2969 -2.80553 2.80553 0.47 0.000335052 0.000292776 0.053716 0.046085 28 2486 21 6.65987e+06 431052 500653. 1732.36 0.65 0.106925 0.092081 2179 21 1476 2287 172688 38971 3.19165 3.19165 -120.717 -3.19165 0 0 612192. 2118.31 0.13 0.04 0.0162278 0.0142434 141 50 54 32 64 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 3.15 0.02 7232 1 0.01 -1 -1 30256 -1 -1 22 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65656 29 32 347 271 1 184 83 17 17 289 -1 unnamed_device 0.11 900 0.15 0.00 3.4643 -103.034 -3.4643 3.4643 0.47 0.000325796 0.000284008 0.0560178 0.0486103 36 1837 24 6.65987e+06 278916 612192. 2118.31 1.08 0.13056 0.112756 1654 21 1474 2506 144471 35201 3.52317 3.52317 -123.784 -3.52317 0 0 782063. 2706.10 0.18 0.06 0.0255961 0.0226245 138 25 87 29 29 29
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.10 0.03 7172 1 0.02 -1 -1 30028 -1 -1 20 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65692 32 32 377 289 1 195 84 17 17 289 -1 unnamed_device 0.18 829 0.15 0.00 3.30796 -110.619 -3.30796 3.30796 0.52 0.000356384 0.000314383 0.0618993 0.0540013 38 2345 25 6.65987e+06 253560 638502. 2209.35 1.94 0.154538 0.133916 1696 24 1694 3144 174540 45163 3.59323 3.59323 -131.187 -3.59323 0 0 851065. 2944.86 0.17 0.05 0.019043 0.0169339 152 31 96 32 32 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 2.68 0.03 7052 1 0.01 -1 -1 30152 -1 -1 36 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66024 32 32 403 317 1 199 100 17 17 289 -1 unnamed_device 0.22 921 0.16 0.00 2.91304 -93.2991 -2.91304 2.91304 0.47 0.000503455 0.000455526 0.0549835 0.0475232 32 2629 27 6.65987e+06 456408 554710. 1919.41 0.54 0.106091 0.0917978 2166 23 1650 2557 204538 48255 2.87891 2.87891 -110.954 -2.87891 0 0 701300. 2426.64 0.15 0.05 0.0196335 0.0173352 154 61 63 32 63 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 2.36 0.02 7040 1 0.01 -1 -1 30212 -1 -1 19 27 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64904 27 32 275 232 1 135 78 17 17 289 -1 unnamed_device 0.13 609 0.11 0.00 2.6767 -79.4688 -2.6767 2.6767 0.47 0.000273151 0.000238386 0.0421787 0.0361962 28 1600 22 6.65987e+06 240882 500653. 1732.36 0.50 0.0780171 0.0670633 1458 21 1046 1780 114394 28591 2.71877 2.71877 -98.4582 -2.71877 0 0 612192. 2118.31 0.13 0.03 0.0128984 0.0113104 99 26 54 27 27 27
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 3.00 0.03 7060 1 0.01 -1 -1 30040 -1 -1 33 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65308 31 32 319 244 1 185 96 17 17 289 -1 unnamed_device 0.12 948 0.17 0.00 2.51444 -84.4067 -2.51444 2.51444 0.58 0.000313083 0.000274876 0.0567398 0.0489406 28 2438 24 6.65987e+06 418374 500653. 1732.36 0.81 0.114095 0.0985735 2101 21 1306 2217 160571 37177 2.71971 2.71971 -102.758 -2.71971 0 0 612192. 2118.31 0.14 0.04 0.0151091 0.0132775 139 -1 115 31 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 2.47 0.02 7024 1 0.01 -1 -1 30004 -1 -1 16 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65440 31 32 340 294 1 148 79 17 17 289 -1 unnamed_device 0.20 726 0.11 0.00 2.45267 -80.3803 -2.45267 2.45267 0.48 0.000308453 0.000266907 0.0432263 0.0371749 28 1918 19 6.65987e+06 202848 500653. 1732.36 0.48 0.0818467 0.0705736 1668 21 1163 1871 135253 32676 2.66345 2.66345 -100.424 -2.66345 0 0 612192. 2118.31 0.14 0.04 0.015043 0.01314 105 81 0 0 84 31
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 2.70 0.02 6964 1 0.01 -1 -1 30016 -1 -1 17 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65212 32 32 315 257 1 162 81 17 17 289 -1 unnamed_device 0.20 863 0.16 0.00 2.7647 -100.118 -2.7647 2.7647 0.49 0.000477138 0.000419373 0.0624044 0.0540181 32 1942 18 6.65987e+06 215526 554710. 1919.41 0.56 0.0996607 0.086398 1810 23 1577 2441 202533 44995 2.92977 2.92977 -121.316 -2.92977 0 0 701300. 2426.64 0.15 0.05 0.0152484 0.0133903 121 31 64 32 32 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 2.51 0.03 7088 1 0.01 -1 -1 30028 -1 -1 17 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65200 30 32 328 276 1 151 79 17 17 289 -1 unnamed_device 0.19 649 0.12 0.00 2.8281 -90.685 -2.8281 2.8281 0.48 0.000308651 0.000269228 0.0505341 0.0438552 30 1636 19 6.65987e+06 215526 526063. 1820.29 0.49 0.090284 0.0784167 1382 20 818 1157 57250 14614 2.81677 2.81677 -105.35 -2.81677 0 0 666494. 2306.21 0.14 0.03 0.013936 0.0123521 110 58 30 30 60 30
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 3.26 0.02 6940 1 0.01 -1 -1 30272 -1 -1 29 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65672 32 32 332 281 1 156 93 17 17 289 -1 unnamed_device 0.19 882 0.14 0.00 2.56538 -90.0406 -2.56538 2.56538 0.48 0.000294388 0.000256997 0.0481021 0.0408876 26 2354 32 6.65987e+06 367662 477104. 1650.88 1.22 0.0952139 0.0808391 1965 22 1358 2237 182040 40926 2.52305 2.52305 -108.011 -2.52305 0 0 585099. 2024.56 0.13 0.04 0.0143795 0.0125418 114 57 25 25 64 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 2.84 0.02 7192 1 0.01 -1 -1 30044 -1 -1 32 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65692 32 32 387 306 1 188 96 17 17 289 -1 unnamed_device 0.33 906 0.17 0.00 2.8739 -99.3264 -2.8739 2.8739 0.47 0.000346899 0.000302267 0.0602091 0.0515124 32 2438 41 6.65987e+06 405696 554710. 1919.41 0.60 0.117005 0.100714 1935 22 1695 2880 211848 48984 3.07197 3.07197 -114.955 -3.07197 0 0 701300. 2426.64 0.15 0.05 0.0174668 0.0153715 143 55 64 32 57 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 2.82 0.02 7100 1 0.01 -1 -1 30068 -1 -1 34 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66032 32 32 408 320 1 200 98 17 17 289 -1 unnamed_device 0.31 1121 0.19 0.00 3.2039 -114.452 -3.2039 3.2039 0.51 0.000365012 0.000321526 0.066144 0.0570532 30 2494 18 6.65987e+06 431052 526063. 1820.29 0.53 0.11295 0.0979331 2144 20 1572 2510 140650 33593 3.32977 3.32977 -134.814 -3.32977 0 0 666494. 2306.21 0.14 0.04 0.0171155 0.0152668 156 60 64 32 64 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 2.43 0.02 7052 1 0.01 -1 -1 30208 -1 -1 18 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65340 29 32 276 232 1 145 79 17 17 289 -1 unnamed_device 0.14 790 0.12 0.00 2.43238 -79.1006 -2.43238 2.43238 0.47 0.000265019 0.000230661 0.0453044 0.0389656 30 1684 19 6.65987e+06 228204 526063. 1820.29 0.47 0.0792282 0.068236 1505 21 837 1363 86754 19986 2.35905 2.35905 -91.5317 -2.35905 0 0 666494. 2306.21 0.14 0.03 0.0129236 0.0113965 107 21 58 29 24 24
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 2.86 0.03 7144 1 0.02 -1 -1 30136 -1 -1 20 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65856 32 32 402 316 1 192 84 17 17 289 -1 unnamed_device 0.24 1060 0.16 0.00 2.7929 -100.795 -2.7929 2.7929 0.47 0.000367886 0.00032526 0.0621308 0.0544463 32 2704 44 6.65987e+06 253560 554710. 1919.41 0.66 0.131854 0.115023 2381 24 2065 3590 290979 66695 3.11837 3.11837 -123.746 -3.11837 0 0 701300. 2426.64 0.15 0.06 0.0202685 0.0179118 146 60 64 32 62 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 2.62 0.02 7068 1 0.01 -1 -1 30164 -1 -1 34 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65724 32 32 384 304 1 185 98 17 17 289 -1 unnamed_device 0.28 1039 0.16 0.00 2.7929 -101.997 -2.7929 2.7929 0.47 0.000340578 0.000299859 0.0550328 0.0474323 32 2181 21 6.65987e+06 431052 554710. 1919.41 0.51 0.100687 0.0871787 1977 18 1357 1923 133687 31257 2.89877 2.89877 -123.123 -2.89877 0 0 701300. 2426.64 0.15 0.04 0.0153226 0.0136457 142 54 64 32 56 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 2.48 0.03 6880 1 0.01 -1 -1 29992 -1 -1 30 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65332 32 32 340 285 1 162 94 17 17 289 -1 unnamed_device 0.16 882 0.14 0.00 2.23864 -85.4966 -2.23864 2.23864 0.48 0.000308482 0.000270375 0.048069 0.0408325 32 1967 16 6.65987e+06 380340 554710. 1919.41 0.48 0.0870953 0.0748729 1788 19 1040 1476 112441 25813 2.15051 2.15051 -99.1881 -2.15051 0 0 701300. 2426.64 0.15 0.03 0.0136494 0.0120196 118 62 29 29 64 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 2.35 0.03 6732 1 0.01 -1 -1 30016 -1 -1 15 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64744 30 32 229 211 1 119 77 17 17 289 -1 unnamed_device 0.11 491 0.08 0.00 1.99938 -63.3481 -1.99938 1.99938 0.47 0.000230616 0.000198523 0.0342887 0.0293421 30 1243 23 6.65987e+06 190170 526063. 1820.29 0.49 0.0650257 0.0556416 993 18 547 769 54563 13764 1.61245 1.61245 -69.2424 -1.61245 0 0 666494. 2306.21 0.14 0.02 0.00943044 0.00830753 85 29 24 24 30 30
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 2.59 0.02 6996 1 0.01 -1 -1 30180 -1 -1 16 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65524 31 32 337 282 1 154 79 17 17 289 -1 unnamed_device 0.27 876 0.12 0.00 3.15104 -99.1894 -3.15104 3.15104 0.48 0.00031081 0.000271811 0.0496955 0.0429293 32 2041 24 6.65987e+06 202848 554710. 1919.41 0.50 0.0920416 0.0795425 1808 17 940 1443 101992 24429 3.00251 3.00251 -113.449 -3.00251 0 0 701300. 2426.64 0.15 0.03 0.0132632 0.0118143 113 55 31 31 62 31
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 2.51 0.03 7176 1 0.02 -1 -1 30012 -1 -1 34 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65548 32 32 367 284 1 192 98 17 17 289 -1 unnamed_device 0.09 1048 0.14 0.00 3.22296 -109.712 -3.22296 3.22296 0.47 0.000343625 0.000302868 0.0488128 0.0420328 32 2316 20 6.65987e+06 431052 554710. 1919.41 0.52 0.0938411 0.0813597 2133 23 1689 2406 182241 41816 3.43117 3.43117 -131.504 -3.43117 0 0 701300. 2426.64 0.15 0.05 0.0178289 0.0157663 145 31 91 32 32 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 2.70 0.03 7384 1 0.01 -1 -1 30420 -1 -1 36 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66060 32 32 461 376 1 196 100 17 17 289 -1 unnamed_device 0.24 1118 0.16 0.00 2.61664 -96.3338 -2.61664 2.61664 0.47 0.000381518 0.000334622 0.0561504 0.0477651 28 2738 24 6.65987e+06 456408 500653. 1732.36 0.59 0.10899 0.0934694 2483 21 1520 2374 188113 41886 3.22165 3.22165 -126.618 -3.22165 0 0 612192. 2118.31 0.13 0.05 0.0195511 0.0172117 149 108 0 0 125 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 2.41 0.03 7012 1 0.01 -1 -1 30136 -1 -1 17 26 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64072 26 32 205 193 1 109 75 17 17 289 -1 unnamed_device 0.13 640 0.09 0.00 2.01838 -60.673 -2.01838 2.01838 0.51 0.000210646 0.000180826 0.0335187 0.0285226 32 1316 18 6.65987e+06 215526 554710. 1919.41 0.45 0.0591747 0.0503384 1166 21 542 841 63799 14657 1.88705 1.88705 -69.8847 -1.88705 0 0 701300. 2426.64 0.18 0.02 0.00950093 0.00822572 77 21 26 26 22 22
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 2.56 0.02 7140 1 0.00 -1 -1 30116 -1 -1 20 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65524 32 32 334 252 1 187 84 17 17 289 -1 unnamed_device 0.10 936 0.15 0.00 3.3921 -104.836 -3.3921 3.3921 0.48 0.00032657 0.000288153 0.0553581 0.0483859 30 2457 23 6.65987e+06 253560 526063. 1820.29 0.54 0.0995444 0.0868351 1999 24 1426 2444 142806 34129 3.88711 3.88711 -133.105 -3.88711 0 0 666494. 2306.21 0.14 0.04 0.0174426 0.0152637 137 -1 122 32 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 2.25 0.02 6688 1 0.01 -1 -1 29880 -1 -1 13 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64516 32 32 200 183 1 122 77 17 17 289 -1 unnamed_device 0.07 665 0.08 0.00 1.76538 -68.1001 -1.76538 1.76538 0.48 0.000211374 0.000182081 0.0311668 0.0266433 30 1372 18 6.65987e+06 164814 526063. 1820.29 0.44 0.0573935 0.0491812 1212 14 487 620 43124 9880 1.77085 1.77085 -76.5587 -1.77085 0 0 666494. 2306.21 0.15 0.02 0.00899317 0.0079821 81 -1 53 32 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 2.86 0.02 7076 1 0.01 -1 -1 30288 -1 -1 32 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65300 32 32 377 289 1 195 96 17 17 289 -1 unnamed_device 0.10 1127 0.28 0.00 3.2739 -116.891 -3.2739 3.2739 0.56 0.000602946 0.000529422 0.0966483 0.0835906 32 2706 28 6.65987e+06 405696 554710. 1919.41 0.61 0.145768 0.126346 2277 21 1870 2825 226254 50778 3.58417 3.58417 -138.217 -3.58417 0 0 701300. 2426.64 0.18 0.05 0.0166976 0.0147615 151 21 96 32 32 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 2.47 0.02 7012 1 0.01 -1 -1 29988 -1 -1 34 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65096 32 32 338 254 1 196 98 17 17 289 -1 unnamed_device 0.10 1104 0.17 0.00 2.95804 -99.3254 -2.95804 2.95804 0.47 0.000328464 0.000285628 0.0535886 0.0461404 32 2488 24 6.65987e+06 431052 554710. 1919.41 0.51 0.0974702 0.0843559 2181 20 1467 2339 173910 38923 2.75051 2.75051 -115.161 -2.75051 0 0 701300. 2426.64 0.15 0.04 0.0154167 0.0136606 148 -1 124 32 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 3.17 0.03 7060 1 0.01 -1 -1 30324 -1 -1 35 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65480 32 32 408 320 1 197 99 17 17 289 -1 unnamed_device 0.21 1062 0.16 0.00 3.19664 -112.102 -3.19664 3.19664 0.48 0.00036278 0.000319255 0.0524925 0.0452623 34 2722 27 6.65987e+06 443730 585099. 2024.56 1.03 0.135536 0.117054 2305 22 1747 2993 224777 52127 3.62711 3.62711 -137.968 -3.62711 0 0 742403. 2568.87 0.16 0.05 0.0182912 0.0161956 153 54 64 32 64 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 2.72 0.02 6932 1 0.01 -1 -1 29920 -1 -1 15 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65040 32 32 295 247 1 149 79 17 17 289 -1 unnamed_device 0.13 699 0.11 0.00 2.30182 -80.5456 -2.30182 2.30182 0.47 0.000282578 0.000246804 0.0446839 0.0387286 32 1917 26 6.65987e+06 190170 554710. 1919.41 0.52 0.0846311 0.0731262 1616 20 1080 1728 132777 31605 2.44611 2.44611 -99.4122 -2.44611 0 0 701300. 2426.64 0.23 0.06 0.021707 0.0191756 106 31 54 32 32 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 2.47 0.03 6912 1 0.01 -1 -1 30040 -1 -1 18 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65132 30 32 299 247 1 154 80 17 17 289 -1 unnamed_device 0.20 729 0.11 0.00 3.0263 -93.3656 -3.0263 3.0263 0.47 0.000298759 0.00026304 0.0428791 0.0371194 26 1835 22 6.65987e+06 228204 477104. 1650.88 0.49 0.0811278 0.0699799 1605 20 1261 1869 135362 32454 3.01697 3.01697 -114.56 -3.01697 0 0 585099. 2024.56 0.13 0.04 0.0134503 0.0116511 113 29 60 30 30 30
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 2.46 0.03 6972 1 0.02 -1 -1 30072 -1 -1 20 28 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65376 28 32 283 237 1 150 80 17 17 289 -1 unnamed_device 0.07 722 0.13 0.00 2.7207 -85.6065 -2.7207 2.7207 0.47 0.000278626 0.000243254 0.0483536 0.0417324 32 2019 25 6.65987e+06 253560 554710. 1919.41 0.52 0.0864745 0.0743161 1690 20 1232 2109 166307 39667 3.18957 3.18957 -107.037 -3.18957 0 0 701300. 2426.64 0.17 0.04 0.0126914 0.0111823 107 27 56 28 28 28
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 2.55 0.02 7096 1 0.02 -1 -1 29988 -1 -1 18 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65236 32 32 284 226 1 166 82 17 17 289 -1 unnamed_device 0.08 885 0.12 0.00 2.8189 -100.232 -2.8189 2.8189 0.47 0.000280523 0.000246235 0.0443248 0.0383383 28 2162 21 6.65987e+06 228204 500653. 1732.36 0.61 0.0833583 0.0720781 1951 24 1502 2454 174071 40107 3.04997 3.04997 -124.633 -3.04997 0 0 612192. 2118.31 0.13 0.04 0.015279 0.0134517 125 -1 96 32 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 2.72 0.02 7052 1 0.01 -1 -1 30256 -1 -1 31 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64984 31 32 305 251 1 162 94 17 17 289 -1 unnamed_device 0.12 845 0.15 0.00 2.62144 -89.3356 -2.62144 2.62144 0.47 0.000293363 0.000255269 0.0471416 0.0400996 28 2191 23 6.65987e+06 393018 500653. 1732.36 0.74 0.0993173 0.085495 1882 23 1288 2166 226125 69531 2.67265 2.67265 -108.629 -2.67265 0 0 612192. 2118.31 0.14 0.05 0.0144822 0.012634 119 26 61 31 31 31
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 2.54 0.02 7080 1 0.02 -1 -1 30076 -1 -1 30 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65200 29 32 316 268 1 154 91 17 17 289 -1 unnamed_device 0.17 821 0.14 0.00 2.23164 -75.9619 -2.23164 2.23164 0.48 0.000305188 0.000254364 0.0506072 0.0427916 28 1933 24 6.65987e+06 380340 500653. 1732.36 0.56 0.0905634 0.0771625 1788 19 951 1625 112591 26636 2.18751 2.18751 -90.5771 -2.18751 0 0 612192. 2118.31 0.14 0.03 0.0131297 0.0115655 109 55 29 29 57 29
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 3.84 0.03 7344 1 0.02 -1 -1 30168 -1 -1 39 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65784 32 32 424 311 1 229 103 17 17 289 -1 unnamed_device 0.27 1052 0.19 0.00 3.41716 -115.034 -3.41716 3.41716 0.47 0.000377486 0.000333004 0.0651421 0.0562517 28 3519 42 6.65987e+06 494442 500653. 1732.36 1.60 0.137745 0.118674 2663 20 1920 3251 263000 60868 4.16242 4.16242 -153.301 -4.16242 0 0 612192. 2118.31 0.13 0.06 0.0188491 0.0167435 179 26 128 32 27 27
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 2.61 0.02 7064 1 0.02 -1 -1 30132 -1 -1 35 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65864 32 32 404 318 1 198 99 17 17 289 -1 unnamed_device 0.18 996 0.14 0.00 2.7849 -98.0869 -2.7849 2.7849 0.47 0.000377005 0.000333782 0.0484957 0.0417151 32 2428 20 6.65987e+06 443730 554710. 1919.41 0.52 0.0954026 0.0825516 2101 19 1711 2591 176608 41518 2.90117 2.90117 -117.442 -2.90117 0 0 701300. 2426.64 0.15 0.04 0.0167102 0.0148854 152 62 62 32 64 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 2.67 0.03 7032 1 0.01 -1 -1 30128 -1 -1 28 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65752 31 32 355 304 1 156 91 17 17 289 -1 unnamed_device 0.28 903 0.12 0.00 2.71958 -88.9927 -2.71958 2.71958 0.47 0.0003044 0.000264532 0.0408044 0.0344904 26 2234 20 6.65987e+06 354984 477104. 1650.88 0.61 0.0816704 0.0695248 1975 20 1158 1794 144940 32488 2.73245 2.73245 -110.968 -2.73245 0 0 585099. 2024.56 0.13 0.04 0.0137988 0.0120215 113 77 0 0 89 31
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 2.67 0.02 7120 1 0.02 -1 -1 30116 -1 -1 21 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65380 31 32 393 311 1 194 84 17 17 289 -1 unnamed_device 0.20 1051 0.16 0.00 3.0233 -98.12 -3.0233 3.0233 0.48 0.000355194 0.000313647 0.0588633 0.0514301 32 2627 24 6.65987e+06 266238 554710. 1919.41 0.53 0.107695 0.0939089 2177 18 1427 2403 173972 39984 3.16937 3.16937 -115.716 -3.16937 0 0 701300. 2426.64 0.15 0.04 0.0154864 0.0137034 146 59 60 30 62 31
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 2.99 0.03 7244 1 0.02 -1 -1 30320 -1 -1 21 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65740 31 32 457 373 1 193 84 17 17 289 -1 unnamed_device 0.25 852 0.15 0.00 3.84744 -108.018 -3.84744 3.84744 0.49 0.000382495 0.000337117 0.0650549 0.0567769 30 2773 20 6.65987e+06 266238 526063. 1820.29 0.83 0.117694 0.102263 1997 19 1103 1813 111255 27774 4.15371 4.15371 -128.483 -4.15371 0 0 666494. 2306.21 0.14 0.04 0.0174249 0.0155265 149 111 0 0 124 31
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 2.73 0.02 7100 1 0.01 -1 -1 30168 -1 -1 21 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65664 31 32 415 335 1 189 84 17 17 289 -1 unnamed_device 0.28 841 0.16 0.00 3.8015 -104.711 -3.8015 3.8015 0.48 0.000376164 0.00033154 0.069162 0.0603521 32 2774 24 6.65987e+06 266238 554710. 1919.41 0.57 0.119743 0.104535 1999 23 1571 2561 200953 47329 4.00797 4.00797 -133.749 -4.00797 0 0 701300. 2426.64 0.15 0.05 0.0194644 0.0172416 144 86 31 31 89 31
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 3.00 0.02 7120 1 0.01 -1 -1 30184 -1 -1 32 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65388 31 32 393 311 1 193 95 17 17 289 -1 unnamed_device 0.18 1071 0.16 0.00 2.98304 -98.9753 -2.98304 2.98304 0.49 0.000369502 0.000324747 0.0544231 0.0467372 34 2459 22 6.65987e+06 405696 585099. 2024.56 0.90 0.131478 0.113241 2179 19 1307 2164 137695 33125 2.92871 2.92871 -113.987 -2.92871 0 0 742403. 2568.87 0.15 0.04 0.0161014 0.0143597 145 58 60 31 62 31
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 2.73 0.03 7060 1 0.01 -1 -1 30484 -1 -1 35 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65684 32 32 408 320 1 198 99 17 17 289 -1 unnamed_device 0.18 1041 0.18 0.00 3.06544 -109.243 -3.06544 3.06544 0.47 0.000349143 0.000304235 0.057693 0.0494602 32 2884 22 6.65987e+06 443730 554710. 1919.41 0.56 0.105491 0.091018 2403 23 2046 2939 232099 53208 3.50391 3.50391 -139.403 -3.50391 0 0 701300. 2426.64 0.15 0.05 0.0181487 0.0159484 154 42 64 32 64 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 2.77 0.02 7348 1 0.02 -1 -1 30240 -1 -1 39 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66424 32 32 497 381 1 232 103 17 17 289 -1 unnamed_device 0.17 1090 0.20 0.00 3.3131 -114.495 -3.3131 3.3131 0.47 0.000431641 0.000383267 0.0673615 0.0580563 30 2619 35 6.65987e+06 494442 526063. 1820.29 0.68 0.136727 0.118471 2144 20 1747 2823 155897 36525 3.39097 3.39097 -133.412 -3.39097 0 0 666494. 2306.21 0.14 0.05 0.0207924 0.0186555 183 91 62 32 96 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 2.45 0.02 6860 1 0.01 -1 -1 30184 -1 -1 17 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64984 31 32 307 252 1 158 80 17 17 289 -1 unnamed_device 0.08 680 0.13 0.00 2.79178 -89.4523 -2.79178 2.79178 0.48 0.000291183 0.00025439 0.0499911 0.0431388 32 2032 21 6.65987e+06 215526 554710. 1919.41 0.51 0.0879312 0.0756185 1655 21 1480 2369 167096 41043 2.99905 2.99905 -111.495 -2.99905 0 0 701300. 2426.64 0.15 0.04 0.0149309 0.013195 116 24 62 31 31 31
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 3.44 0.02 7192 1 0.01 -1 -1 30104 -1 -1 36 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65796 31 32 397 313 1 196 99 17 17 289 -1 unnamed_device 0.22 936 0.18 0.00 3.3069 -109.634 -3.3069 3.3069 0.47 0.000344793 0.00030232 0.058827 0.0504637 28 3028 34 6.65987e+06 456408 500653. 1732.36 1.29 0.117445 0.100325 2343 27 1965 3312 378949 113386 3.67257 3.67257 -135.253 -3.67257 0 0 612192. 2118.31 0.14 0.08 0.0218188 0.0191083 150 59 62 31 62 31
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 2.59 0.02 7108 1 0.01 -1 -1 30308 -1 -1 33 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65344 32 32 398 314 1 196 97 17 17 289 -1 unnamed_device 0.11 1118 0.18 0.00 2.89404 -97.2503 -2.89404 2.89404 0.47 0.000356589 0.000313652 0.0594014 0.0512613 28 2690 17 6.65987e+06 418374 500653. 1732.36 0.61 0.104929 0.0909469 2337 21 1376 2423 196168 42631 2.92311 2.92311 -113.652 -2.92311 0 0 612192. 2118.31 0.13 0.05 0.0173576 0.015368 148 54 62 32 62 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 2.82 0.03 7048 1 0.01 -1 -1 30020 -1 -1 20 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65624 32 32 346 258 1 194 84 17 17 289 -1 unnamed_device 0.10 1163 0.16 0.00 3.31896 -117.52 -3.31896 3.31896 0.51 0.000347527 0.000306287 0.0551926 0.0481956 28 3033 22 6.65987e+06 253560 500653. 1732.36 0.77 0.102665 0.089477 2651 22 1896 3537 297503 64025 3.84463 3.84463 -150.898 -3.84463 0 0 612192. 2118.31 0.15 0.06 0.0180857 0.0160264 150 -1 128 32 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 2.67 0.02 7040 1 0.01 -1 -1 30316 -1 -1 34 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65536 32 32 425 344 1 190 98 17 17 289 -1 unnamed_device 0.26 966 0.15 0.00 2.54238 -90.5655 -2.54238 2.54238 0.47 0.000355036 0.000312412 0.0497236 0.0427613 32 2453 21 6.65987e+06 431052 554710. 1919.41 0.50 0.0967132 0.0834132 2099 23 1497 2171 169508 39866 2.72065 2.72065 -109.858 -2.72065 0 0 701300. 2426.64 0.16 0.05 0.0205269 0.0181428 145 81 25 25 96 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 3.40 0.03 7212 1 0.01 -1 -1 29996 -1 -1 35 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65752 32 32 396 312 1 194 99 17 17 289 -1 unnamed_device 0.26 1064 0.15 0.00 2.7647 -101.314 -2.7647 2.7647 0.54 0.000361613 0.00031487 0.0495129 0.0424525 26 2867 43 6.65987e+06 443730 477104. 1650.88 1.10 0.115394 0.0994612 2349 19 1560 2617 192829 43459 3.04997 3.04997 -126.82 -3.04997 0 0 585099. 2024.56 0.13 0.05 0.01613 0.0142937 146 58 64 32 60 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 2.74 0.02 7012 1 0.02 -1 -1 30180 -1 -1 37 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65784 32 32 406 319 1 200 101 17 17 289 -1 unnamed_device 0.18 1094 0.21 0.00 2.63244 -96.2885 -2.63244 2.63244 0.47 0.000628465 0.000528803 0.0715072 0.060894 32 2626 18 6.65987e+06 469086 554710. 1919.41 0.58 0.128251 0.110356 2253 21 1696 2524 197243 44810 2.79751 2.79751 -114.42 -2.79751 0 0 701300. 2426.64 0.15 0.05 0.0179605 0.0158601 155 61 63 32 64 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 3.99 0.02 7168 1 0.01 -1 -1 30272 -1 -1 36 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65768 32 32 377 289 1 194 100 17 17 289 -1 unnamed_device 0.10 806 0.16 0.00 3.1757 -105.394 -3.1757 3.1757 0.48 0.000351641 0.000309672 0.0503455 0.0432443 36 2260 45 6.65987e+06 456408 612192. 2118.31 2.00 0.142522 0.122532 1776 23 1605 2626 189239 44277 3.50617 3.50617 -129.36 -3.50617 0 0 782063. 2706.10 0.16 0.05 0.0178704 0.0158198 151 21 96 32 32 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 2.71 0.02 7192 1 0.01 -1 -1 30296 -1 -1 37 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66184 32 32 408 320 1 197 101 17 17 289 -1 unnamed_device 0.11 850 0.15 0.00 3.10464 -106.011 -3.10464 3.10464 0.50 0.000349924 0.000307416 0.0491516 0.0419549 30 2268 42 6.65987e+06 469086 526063. 1820.29 0.75 0.111327 0.0953183 1781 21 1486 2248 126528 30537 3.39685 3.39685 -128.005 -3.39685 0 0 666494. 2306.21 0.14 0.04 0.0174978 0.0155698 153 50 64 32 64 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 2.76 0.03 7300 1 0.00 -1 -1 30216 -1 -1 34 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65776 31 32 451 369 1 193 97 17 17 289 -1 unnamed_device 0.26 1002 0.19 0.00 3.45918 -102.574 -3.45918 3.45918 0.47 0.000373678 0.000327736 0.065442 0.056314 32 2943 25 6.65987e+06 431052 554710. 1919.41 0.58 0.118579 0.102134 2276 23 1675 2775 211603 47910 3.40485 3.40485 -122.865 -3.40485 0 0 701300. 2426.64 0.15 0.05 0.019457 0.0171242 145 110 0 0 122 31
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 2.92 0.02 7168 1 0.01 -1 -1 30292 -1 -1 20 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65596 32 32 433 347 1 195 84 17 17 289 -1 unnamed_device 0.29 998 0.16 0.00 3.20378 -101.687 -3.20378 3.20378 0.48 0.000378176 0.000335231 0.0628024 0.0549204 32 2951 36 6.65987e+06 253560 554710. 1919.41 0.70 0.127097 0.111101 2442 21 1964 3562 284371 65818 3.39185 3.39185 -131.939 -3.39185 0 0 701300. 2426.64 0.15 0.06 0.0183324 0.0162033 149 86 32 32 94 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 2.57 0.02 7020 1 0.00 -1 -1 30212 -1 -1 30 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65308 32 32 313 256 1 166 94 17 17 289 -1 unnamed_device 0.09 740 0.15 0.00 2.71964 -90.6672 -2.71964 2.71964 0.47 0.000286597 0.000249655 0.0474415 0.0405645 28 2218 34 6.65987e+06 380340 500653. 1732.36 0.65 0.0921794 0.0789191 1897 22 1354 2071 163238 38307 2.95985 2.95985 -113.617 -2.95985 0 0 612192. 2118.31 0.13 0.04 0.0142987 0.0122886 124 20 63 32 32 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 2.59 0.02 6856 1 0.02 -1 -1 29968 -1 -1 18 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65564 32 32 371 315 1 164 82 17 17 289 -1 unnamed_device 0.20 753 0.12 0.00 2.66064 -92.2944 -2.66064 2.66064 0.47 0.000321365 0.000280798 0.0491871 0.0424691 32 2424 24 6.65987e+06 228204 554710. 1919.41 0.55 0.0940683 0.0814181 1903 23 1526 2342 198814 47260 2.84891 2.84891 -115.009 -2.84891 0 0 701300. 2426.64 0.15 0.05 0.0165578 0.0143697 121 91 0 0 94 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 4.56 0.02 7376 1 0.01 -1 -1 30420 -1 -1 40 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65772 32 32 470 352 1 233 104 17 17 289 -1 unnamed_device 0.13 1176 0.21 0.00 3.9023 -130.361 -3.9023 3.9023 0.47 0.000411187 0.000361929 0.0727412 0.0627233 34 4165 37 6.65987e+06 507120 585099. 2024.56 2.37 0.186397 0.160581 2820 24 2359 3899 379450 87109 4.98177 4.98177 -168.765 -4.98177 0 0 742403. 2568.87 0.16 0.09 0.0245977 0.0217009 187 53 96 32 64 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 2.49 0.02 7300 1 0.01 -1 -1 30032 -1 -1 31 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65288 32 32 369 285 1 194 95 17 17 289 -1 unnamed_device 0.16 1033 0.16 0.00 2.7929 -100.314 -2.7929 2.7929 0.47 0.000342776 0.000299771 0.0555568 0.0479966 32 2218 20 6.65987e+06 393018 554710. 1919.41 0.49 0.100055 0.0869258 1988 22 1424 2199 141845 33705 2.92617 2.92617 -116.52 -2.92617 0 0 701300. 2426.64 0.15 0.04 0.0173939 0.0154689 146 31 92 32 32 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 2.81 0.02 7036 1 0.01 -1 -1 29996 -1 -1 30 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65412 30 32 299 247 1 158 92 17 17 289 -1 unnamed_device 0.10 695 0.14 0.00 2.7427 -89.2314 -2.7427 2.7427 0.47 0.00028472 0.000247545 0.0486048 0.0415408 34 1865 21 6.65987e+06 380340 585099. 2024.56 0.82 0.109292 0.0939604 1527 19 1018 1579 101489 25374 3.03897 3.03897 -110.426 -3.03897 0 0 742403. 2568.87 0.15 0.03 0.0131744 0.0116814 115 29 60 30 30 30
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.03 0.03 7336 1 0.02 -1 -1 30648 -1 -1 43 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66596 32 32 532 414 1 232 107 17 17 289 -1 unnamed_device 0.50 1146 0.17 0.00 3.7821 -129.035 -3.7821 3.7821 0.50 0.000434808 0.000384753 0.0598191 0.0514764 28 3599 47 6.65987e+06 545154 500653. 1732.36 1.55 0.142355 0.122483 2775 24 2297 3513 283729 64429 4.81357 4.81357 -175.46 -4.81357 0 0 612192. 2118.31 0.14 0.07 0.0236696 0.0208276 186 109 32 32 128 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 3.12 0.02 7112 1 0.01 -1 -1 30000 -1 -1 36 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65608 32 32 377 289 1 194 100 17 17 289 -1 unnamed_device 0.20 973 0.15 0.00 3.42816 -118.186 -3.42816 3.42816 0.48 0.000359193 0.00031551 0.048742 0.041638 26 2973 33 6.65987e+06 456408 477104. 1650.88 1.09 0.105744 0.090656 2375 21 1834 2783 241807 57648 3.74643 3.74643 -148.122 -3.74643 0 0 585099. 2024.56 0.13 0.05 0.01695 0.0149473 151 31 96 32 32 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 2.65 0.03 6868 1 0.01 -1 -1 30084 -1 -1 31 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65172 32 32 284 226 1 164 95 17 17 289 -1 unnamed_device 0.12 832 0.14 0.00 2.7647 -99.2709 -2.7647 2.7647 0.51 0.000279854 0.000243431 0.0443595 0.0379488 28 2389 24 6.65987e+06 393018 500653. 1732.36 0.63 0.0836176 0.0716119 2014 21 1471 2331 179641 41449 2.94077 2.94077 -121.881 -2.94077 0 0 612192. 2118.31 0.14 0.04 0.0139421 0.012252 123 -1 96 32 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 3.55 0.03 7336 1 0.02 -1 -1 30396 -1 -1 42 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65796 32 32 439 321 1 235 106 17 17 289 -1 unnamed_device 0.13 1082 0.25 0.00 3.87216 -129.148 -3.87216 3.87216 0.49 0.000687599 0.000609667 0.0782692 0.0678898 36 2887 27 6.65987e+06 532476 612192. 2118.31 1.33 0.170943 0.147872 2335 24 2179 3565 233571 54455 4.50703 4.50703 -160.392 -4.50703 0 0 782063. 2706.10 0.17 0.06 0.0211605 0.0187882 189 26 128 32 32 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 2.73 0.02 6820 1 0.02 -1 -1 29948 -1 -1 17 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64884 32 32 284 226 1 162 81 17 17 289 -1 unnamed_device 0.13 665 0.12 0.00 2.7647 -95.7821 -2.7647 2.7647 0.62 0.000284404 0.000248393 0.0476466 0.0412714 32 2229 23 6.65987e+06 215526 554710. 1919.41 0.54 0.0863418 0.0745808 1848 21 1541 2458 188660 46710 3.07711 3.07711 -123.392 -3.07711 0 0 701300. 2426.64 0.15 0.07 0.0220085 0.019413 121 -1 96 32 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 2.69 0.03 7056 1 0.02 -1 -1 30020 -1 -1 31 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65248 30 32 299 247 1 157 93 17 17 289 -1 unnamed_device 0.20 652 0.13 0.00 2.7427 -87.4284 -2.7427 2.7427 0.49 0.00028502 0.000247827 0.0429795 0.0365439 32 1873 24 6.65987e+06 393018 554710. 1919.41 0.55 0.0924575 0.0789702 1620 20 1252 2022 150433 35450 3.12437 3.12437 -108.675 -3.12437 0 0 701300. 2426.64 0.15 0.04 0.013115 0.0115037 113 29 60 30 30 30
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 2.70 0.03 7144 1 0.02 -1 -1 30092 -1 -1 33 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65808 29 32 397 323 1 182 94 17 17 289 -1 unnamed_device 0.24 982 0.16 0.00 2.75878 -90.4997 -2.75878 2.75878 0.48 0.000342955 0.000301853 0.0545183 0.0465835 30 2086 20 6.65987e+06 418374 526063. 1820.29 0.52 0.104274 0.0899487 1822 16 970 1671 79749 20149 2.84797 2.84797 -107.076 -2.84797 0 0 666494. 2306.21 0.15 0.03 0.0141369 0.0127183 133 81 29 29 85 29
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 2.91 0.02 7068 1 0.01 -1 -1 30332 -1 -1 20 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65948 32 32 408 320 1 194 84 17 17 289 -1 unnamed_device 0.21 1006 0.19 0.00 3.2571 -117.614 -3.2571 3.2571 0.49 0.000367547 0.000324668 0.0726511 0.0634689 32 2398 24 6.65987e+06 253560 554710. 1919.41 0.67 0.145077 0.126973 2101 23 2071 3107 242586 54352 3.55937 3.55937 -140.904 -3.55937 0 0 701300. 2426.64 0.15 0.06 0.0204689 0.0181502 150 53 64 32 64 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 3.39 0.03 7100 1 0.01 -1 -1 30368 -1 -1 34 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65768 32 32 408 320 1 195 98 17 17 289 -1 unnamed_device 0.37 929 0.19 0.00 3.2739 -111.999 -3.2739 3.2739 0.52 0.000366957 0.000322282 0.065794 0.0566311 30 2791 36 6.65987e+06 431052 526063. 1820.29 0.94 0.135058 0.116437 2113 23 1511 2604 168010 38805 3.49697 3.49697 -135.205 -3.49697 0 0 666494. 2306.21 0.14 0.05 0.0191984 0.017109 152 55 64 32 64 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 2.59 0.02 6948 1 0.01 -1 -1 30188 -1 -1 30 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65348 32 32 346 288 1 161 94 17 17 289 -1 unnamed_device 0.17 689 0.15 0.00 2.69764 -91.9975 -2.69764 2.69764 0.47 0.000304328 0.000264962 0.0513612 0.0438858 32 2072 44 6.65987e+06 380340 554710. 1919.41 0.57 0.103836 0.0890822 1632 22 1367 2017 151602 35972 2.90371 2.90371 -113.339 -2.90371 0 0 701300. 2426.64 0.15 0.04 0.0156209 0.0134535 120 55 32 32 64 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 2.55 0.02 7112 1 0.01 -1 -1 30136 -1 -1 17 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65388 31 32 355 304 1 152 80 17 17 289 -1 unnamed_device 0.22 760 0.10 0.00 2.74778 -85.8445 -2.74778 2.74778 0.47 0.000309114 0.000270946 0.039565 0.0342272 32 1991 18 6.65987e+06 215526 554710. 1919.41 0.50 0.0803982 0.0696459 1739 20 1176 2122 149294 35663 2.68645 2.68645 -101.827 -2.68645 0 0 701300. 2426.64 0.15 0.04 0.0144774 0.0127377 109 82 0 0 89 31
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 2.77 0.03 7064 1 0.01 -1 -1 30236 -1 -1 33 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65392 30 32 377 300 1 186 95 17 17 289 -1 unnamed_device 0.16 794 0.16 0.00 2.67564 -85.6473 -2.67564 2.67564 0.47 0.000342657 0.000299668 0.0612663 0.0525735 30 2256 32 6.65987e+06 418374 526063. 1820.29 0.74 0.115538 0.0992978 1632 20 1325 2197 125160 31608 2.74071 2.74071 -100.055 -2.74071 0 0 666494. 2306.21 0.15 0.04 0.0157546 0.0139729 137 52 60 30 57 30
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 3.53 0.02 7216 1 0.01 -1 -1 30236 -1 -1 31 28 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65312 28 32 337 265 1 180 91 17 17 289 -1 unnamed_device 0.11 741 0.14 0.00 3.41304 -96.4117 -3.41304 3.41304 0.47 0.000306022 0.000268086 0.0546571 0.0471137 28 2494 39 6.65987e+06 393018 500653. 1732.36 1.32 0.109174 0.0934944 1722 22 1447 2343 167514 45978 4.06911 4.06911 -119.839 -4.06911 0 0 612192. 2118.31 0.19 0.07 0.024717 0.0217419 133 20 84 28 28 28
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 2.61 0.03 6884 1 0.01 -1 -1 30108 -1 -1 18 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65436 30 32 328 276 1 157 80 17 17 289 -1 unnamed_device 0.21 849 0.12 0.00 2.8131 -95.518 -2.8131 2.8131 0.47 0.000299679 0.00026255 0.0472622 0.0411531 32 1980 20 6.65987e+06 228204 554710. 1919.41 0.50 0.0858992 0.0746668 1787 23 1428 2338 174253 40786 2.89097 2.89097 -114.56 -2.89097 0 0 701300. 2426.64 0.16 0.05 0.0185451 0.0164416 114 58 30 30 60 30
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 2.54 0.03 6904 1 0.01 -1 -1 30080 -1 -1 16 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65332 32 32 362 309 1 158 80 17 17 289 -1 unnamed_device 0.21 934 0.11 0.00 2.72278 -90.4515 -2.72278 2.72278 0.47 0.000326882 0.000286658 0.0453422 0.0393489 32 1931 20 6.65987e+06 202848 554710. 1919.41 0.49 0.0862911 0.0746682 1815 21 1103 1836 146310 33068 2.75045 2.75045 -105.707 -2.75045 0 0 701300. 2426.64 0.15 0.04 0.0154681 0.0136271 113 88 0 0 91 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 2.92 0.03 7116 1 0.02 -1 -1 30100 -1 -1 35 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65656 31 32 337 253 1 196 98 17 17 289 -1 unnamed_device 0.07 1129 0.18 0.00 3.40616 -116.378 -3.40616 3.40616 0.47 0.000326905 0.000287569 0.0564841 0.0487839 28 2936 43 6.65987e+06 443730 500653. 1732.36 0.94 0.115938 0.100346 2516 21 1602 2682 236491 50119 3.61223 3.61223 -139.915 -3.61223 0 0 612192. 2118.31 0.13 0.06 0.0178829 0.0157653 150 -1 124 31 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 2.73 0.03 7200 1 0.02 -1 -1 30328 -1 -1 34 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65400 32 32 408 320 1 197 98 17 17 289 -1 unnamed_device 0.18 929 0.18 0.00 3.2739 -111.645 -3.2739 3.2739 0.49 0.000363328 0.000320051 0.0602955 0.0519462 32 2925 21 6.65987e+06 431052 554710. 1919.41 0.56 0.112206 0.0973716 2274 24 1989 3235 269993 62743 3.75457 3.75457 -139.089 -3.75457 0 0 701300. 2426.64 0.15 0.06 0.0191834 0.0169164 153 57 64 32 64 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 2.87 0.02 7064 1 0.01 -1 -1 30076 -1 -1 34 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66016 32 32 408 320 1 194 98 17 17 289 -1 unnamed_device 0.29 1011 0.18 0.00 3.30796 -114.705 -3.30796 3.30796 0.48 0.000364704 0.000322297 0.0631041 0.0545637 32 2774 22 6.65987e+06 431052 554710. 1919.41 0.61 0.116001 0.100651 2280 23 2046 3444 298157 63387 3.50423 3.50423 -134.663 -3.50423 0 0 701300. 2426.64 0.15 0.06 0.0189381 0.0167614 151 62 64 32 64 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 2.68 0.02 7004 1 0.01 -1 -1 30112 -1 -1 37 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65772 32 32 400 316 1 196 101 17 17 289 -1 unnamed_device 0.22 1068 0.19 0.00 3.10864 -106.184 -3.10864 3.10864 0.47 0.000357031 0.000314623 0.0605569 0.0521935 32 2726 23 6.65987e+06 469086 554710. 1919.41 0.53 0.109052 0.0944261 2259 24 1795 2940 208701 47072 3.43791 3.43791 -126.405 -3.43791 0 0 701300. 2426.64 0.15 0.05 0.0191885 0.0169351 148 62 60 30 64 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 2.57 0.02 6980 1 0.01 -1 -1 30024 -1 -1 18 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65288 30 32 299 247 1 156 80 17 17 289 -1 unnamed_device 0.15 615 0.13 0.00 2.7819 -89.1296 -2.7819 2.7819 0.47 0.000282223 0.000246766 0.0480051 0.0415279 32 1944 24 6.65987e+06 228204 554710. 1919.41 0.51 0.0866873 0.0749148 1514 23 1419 2201 162715 39982 3.12617 3.12617 -110.764 -3.12617 0 0 701300. 2426.64 0.17 0.04 0.0145256 0.0127395 112 29 60 30 30 30
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 2.65 0.02 7168 1 0.01 -1 -1 30188 -1 -1 22 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65396 30 32 386 306 1 191 84 17 17 289 -1 unnamed_device 0.22 920 0.16 0.00 3.36736 -111.701 -3.36736 3.36736 0.47 0.000353701 0.000312416 0.0604598 0.0527269 32 2275 22 6.65987e+06 278916 554710. 1919.41 0.52 0.106835 0.0931755 1927 19 1765 2576 191882 43557 3.53423 3.53423 -132.005 -3.53423 0 0 701300. 2426.64 0.15 0.05 0.0168204 0.0150218 146 58 60 30 60 30
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 2.89 0.02 7268 1 0.01 -1 -1 30464 -1 -1 39 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65964 32 32 470 382 1 198 103 17 17 289 -1 unnamed_device 0.27 906 0.18 0.00 3.10658 -106.627 -3.10658 3.10658 0.48 0.000374961 0.000326307 0.0617475 0.0528097 32 3034 34 6.65987e+06 494442 554710. 1919.41 0.63 0.120023 0.103088 2312 25 2078 3226 259843 59741 3.63405 3.63405 -135.374 -3.63405 0 0 701300. 2426.64 0.15 0.06 0.0203267 0.0177664 154 106 0 0 128 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 2.87 0.03 7200 1 0.02 -1 -1 30428 -1 -1 31 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65832 31 32 427 343 1 189 94 17 17 289 -1 unnamed_device 0.32 1070 0.18 0.00 3.37204 -109.248 -3.37204 3.37204 0.50 0.000372195 0.000327237 0.0632642 0.0546561 32 2546 21 6.65987e+06 393018 554710. 1919.41 0.58 0.115052 0.0998279 2202 23 1786 2878 215510 49699 3.76551 3.76551 -141.953 -3.76551 0 0 701300. 2426.64 0.15 0.05 0.0191159 0.0168869 145 79 31 31 93 31
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 2.91 0.03 7412 1 0.01 -1 -1 30264 -1 -1 30 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65928 30 32 407 331 1 182 92 17 17 289 -1 unnamed_device 0.26 930 0.20 0.00 3.0353 -91.1427 -3.0353 3.0353 0.47 0.000359228 0.000316842 0.0733949 0.0634695 30 2182 20 6.65987e+06 380340 526063. 1820.29 0.57 0.121949 0.105545 1784 20 942 1583 91448 21417 2.93496 2.93496 -107.559 -2.93496 0 0 666494. 2306.21 0.14 0.03 0.0165761 0.014764 136 83 26 26 90 30
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 2.77 0.02 7208 1 0.00 -1 -1 30240 -1 -1 21 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65940 32 32 408 320 1 198 85 17 17 289 -1 unnamed_device 0.21 1009 0.16 0.00 3.2179 -112.246 -3.2179 3.2179 0.48 0.000555781 0.000508855 0.059969 0.0524389 32 2897 24 6.65987e+06 266238 554710. 1919.41 0.60 0.111161 0.0969684 2361 23 2132 3699 322930 70494 3.96797 3.96797 -140.311 -3.96797 0 0 701300. 2426.64 0.15 0.06 0.0192047 0.0169993 154 58 64 32 64 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 2.79 0.03 7084 1 0.01 -1 -1 30116 -1 -1 34 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65852 29 32 391 320 1 179 95 17 17 289 -1 unnamed_device 0.14 785 0.18 0.00 2.63164 -80.5559 -2.63164 2.63164 0.48 0.000372825 0.000315197 0.0634676 0.0542934 28 2102 26 6.65987e+06 431052 500653. 1732.36 0.75 0.114922 0.0978654 1738 21 1348 2231 161242 41257 2.95985 2.95985 -101.34 -2.95985 0 0 612192. 2118.31 0.14 0.05 0.0172612 0.0152434 134 81 26 26 85 29
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 2.42 0.02 6772 1 0.01 -1 -1 29920 -1 -1 16 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65012 32 32 284 226 1 157 80 17 17 289 -1 unnamed_device 0.11 739 0.10 0.00 2.7819 -96.8505 -2.7819 2.7819 0.48 0.00028234 0.000247195 0.0352462 0.0305004 32 2042 25 6.65987e+06 202848 554710. 1919.41 0.52 0.0772733 0.0669964 1828 22 1423 2183 179936 42601 3.02797 3.02797 -124.04 -3.02797 0 0 701300. 2426.64 0.15 0.04 0.0145228 0.012897 116 -1 96 32 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 2.98 0.03 7056 1 0.01 -1 -1 30088 -1 -1 33 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65676 32 32 408 320 1 194 97 17 17 289 -1 unnamed_device 0.32 1088 0.17 0.00 3.40616 -119.825 -3.40616 3.40616 0.55 0.000367831 0.000323936 0.0613965 0.0530401 32 2592 22 6.65987e+06 418374 554710. 1919.41 0.59 0.117766 0.102163 2238 21 1876 2900 229413 51006 3.72443 3.72443 -141.705 -3.72443 0 0 701300. 2426.64 0.15 0.05 0.0189423 0.0167829 150 62 64 32 64 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 2.71 0.02 7324 1 0.02 -1 -1 30092 -1 -1 21 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65612 32 32 408 320 1 201 85 17 17 289 -1 unnamed_device 0.19 805 0.16 0.00 3.38936 -113.973 -3.38936 3.38936 0.47 0.000375935 0.000332998 0.0625707 0.05447 32 2641 25 6.65987e+06 266238 554710. 1919.41 0.55 0.114814 0.09969 2038 20 2094 3150 227640 57596 3.86183 3.86183 -144.387 -3.86183 0 0 701300. 2426.64 0.15 0.07 0.0228934 0.0201793 157 62 64 32 64 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 2.61 0.02 6960 1 0.01 -1 -1 30132 -1 -1 29 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65560 32 32 316 268 1 158 93 17 17 289 -1 unnamed_device 0.25 927 0.14 0.00 2.72758 -89.9249 -2.72758 2.72758 0.53 0.000283513 0.000245102 0.0462528 0.0393726 30 1795 20 6.65987e+06 367662 526063. 1820.29 0.49 0.0875108 0.0752416 1621 18 775 1181 67120 16047 2.55105 2.55105 -103.769 -2.55105 0 0 666494. 2306.21 0.14 0.03 0.012139 0.0107756 111 47 32 32 54 27
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 2.49 0.02 7152 1 0.01 -1 -1 29976 -1 -1 18 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65140 31 32 277 222 1 160 81 17 17 289 -1 unnamed_device 0.08 810 0.12 0.00 2.7317 -95.9773 -2.7317 2.7317 0.47 0.000274158 0.000239839 0.0463549 0.0401445 32 2099 32 6.65987e+06 228204 554710. 1919.41 0.58 0.0939026 0.081658 1700 23 1564 2514 166728 39254 3.02917 3.02917 -116.554 -3.02917 0 0 701300. 2426.64 0.15 0.04 0.0143829 0.0126049 118 -1 93 31 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 3.30 0.03 7060 1 0.01 -1 -1 30000 -1 -1 32 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65804 32 32 382 304 1 188 96 17 17 289 -1 unnamed_device 0.24 773 0.14 0.00 3.05399 -98.1934 -3.05399 3.05399 0.48 0.000338073 0.000294872 0.0554577 0.0475181 34 2555 28 6.65987e+06 405696 585099. 2024.56 1.18 0.13755 0.117859 1836 23 1393 1960 159296 41340 3.76551 3.76551 -120.932 -3.76551 0 0 742403. 2568.87 0.15 0.05 0.0181289 0.0160064 138 56 60 32 58 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 2.87 0.03 7148 1 0.01 -1 -1 30228 -1 -1 30 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65780 32 32 407 331 1 190 94 17 17 289 -1 unnamed_device 0.28 1130 0.17 0.00 3.55372 -105.604 -3.55372 3.55372 0.48 0.00035415 0.000311355 0.0579471 0.0501167 28 2635 32 6.65987e+06 380340 500653. 1732.36 0.67 0.11504 0.0992764 2257 24 1470 2524 197716 44314 3.74351 3.74351 -128.862 -3.74351 0 0 612192. 2118.31 0.13 0.05 0.0203694 0.017981 138 81 28 28 88 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 2.71 0.03 7328 1 0.01 -1 -1 30204 -1 -1 35 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65900 32 32 400 286 1 228 99 17 17 289 -1 unnamed_device 0.09 1274 0.21 0.00 3.78416 -129.852 -3.78416 3.78416 0.48 0.000390186 0.00033382 0.0675801 0.0585855 32 3132 24 6.65987e+06 443730 554710. 1919.41 0.64 0.128236 0.111587 2540 22 2288 3776 294825 66716 4.56323 4.56323 -158.887 -4.56323 0 0 701300. 2426.64 0.15 0.06 0.0199674 0.0177605 177 -1 156 32 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 2.89 0.02 7120 1 0.01 -1 -1 30260 -1 -1 32 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65468 30 32 374 298 1 184 94 17 17 289 -1 unnamed_device 0.20 790 0.15 0.00 2.95004 -87.2328 -2.95004 2.95004 0.50 0.00035615 0.000297957 0.059136 0.0504591 32 2406 35 6.65987e+06 405696 554710. 1919.41 0.74 0.123573 0.105984 1701 22 1431 2053 150475 38245 3.13425 3.13425 -110.62 -3.13425 0 0 701300. 2426.64 0.15 0.04 0.0174048 0.0154052 136 47 60 30 56 30
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 2.23 0.02 7172 1 0.01 -1 -1 30116 -1 -1 20 27 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64900 27 32 275 232 1 143 79 17 17 289 -1 unnamed_device 0.08 645 0.11 0.00 2.9371 -80.1248 -2.9371 2.9371 0.47 0.000273435 0.000240033 0.0419933 0.0363307 26 1596 19 6.65987e+06 253560 477104. 1650.88 0.44 0.0755024 0.0652243 1486 18 1058 1520 107889 26202 3.04317 3.04317 -102.53 -3.04317 0 0 585099. 2024.56 0.13 0.03 0.0115456 0.0102011 104 26 54 27 27 27
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 2.83 0.03 7316 1 0.01 -1 -1 30552 -1 -1 40 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66612 32 32 494 379 1 232 104 17 17 289 -1 unnamed_device 0.18 1370 0.23 0.00 3.69844 -116.663 -3.69844 3.69844 0.51 0.000419651 0.00037041 0.0733937 0.0633927 32 3507 27 6.65987e+06 507120 554710. 1919.41 0.63 0.133578 0.115423 3001 24 2394 4184 369226 81471 3.81151 3.81151 -141.618 -3.81151 0 0 701300. 2426.64 0.15 0.07 0.0227294 0.0199861 183 85 62 31 95 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 2.88 0.02 7164 1 0.01 -1 -1 30580 -1 -1 21 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65648 31 32 457 373 1 189 84 17 17 289 -1 unnamed_device 0.24 1020 0.18 0.00 3.4593 -110.928 -3.4593 3.4593 0.53 0.000387496 0.000342561 0.0715495 0.0625373 32 2586 24 6.65987e+06 266238 554710. 1919.41 0.68 0.146956 0.12834 2203 18 1547 2457 191474 44018 3.69351 3.69351 -140.269 -3.69351 0 0 701300. 2426.64 0.15 0.05 0.0168435 0.0149583 144 105 0 0 124 31
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 2.49 0.02 6968 1 0.01 -1 -1 30048 -1 -1 16 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64868 32 32 356 305 1 151 80 17 17 289 -1 unnamed_device 0.22 762 0.13 0.00 3.09344 -89.3695 -3.09344 3.09344 0.48 0.000321571 0.000281511 0.0507336 0.0440178 30 1814 19 6.65987e+06 202848 526063. 1820.29 0.48 0.0918105 0.079726 1605 13 617 922 62025 14188 2.58631 2.58631 -103.939 -2.58631 0 0 666494. 2306.21 0.14 0.02 0.010975 0.00986912 109 86 0 0 89 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 2.81 0.02 7088 1 0.01 -1 -1 29984 -1 -1 32 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65352 32 32 365 283 1 196 96 17 17 289 -1 unnamed_device 0.12 1101 0.17 0.00 3.5625 -114.458 -3.5625 3.5625 0.47 0.000334466 0.000293394 0.0573053 0.0491987 28 2818 25 6.65987e+06 405696 500653. 1732.36 0.71 0.105949 0.0912156 2334 20 1475 2219 170403 38056 3.60137 3.60137 -136.708 -3.60137 0 0 612192. 2118.31 0.19 0.05 0.0161117 0.0142374 146 31 90 30 32 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 2.64 0.02 7196 1 0.02 -1 -1 30332 -1 -1 36 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65672 31 32 445 338 1 220 99 17 17 289 -1 unnamed_device 0.11 975 0.19 0.00 3.33804 -103.197 -3.33804 3.33804 0.47 0.000385459 0.000339919 0.0677836 0.0586716 32 2946 25 6.65987e+06 456408 554710. 1919.41 0.57 0.121901 0.105777 2210 21 1956 2883 216237 52744 3.73751 3.73751 -133.851 -3.73751 0 0 701300. 2426.64 0.15 0.06 0.0206323 0.018254 171 50 87 31 62 31
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 2.51 0.03 7384 1 0.00 -1 -1 30176 -1 -1 33 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65172 30 32 376 300 1 186 95 17 17 289 -1 unnamed_device 0.16 975 0.15 0.00 2.88004 -87.8095 -2.88004 2.88004 0.47 0.000333942 0.000293974 0.0491204 0.0419181 30 2214 18 6.65987e+06 418374 526063. 1820.29 0.49 0.0911288 0.0785023 1897 18 1055 1861 109799 26241 2.58031 2.58031 -102.21 -2.58031 0 0 666494. 2306.21 0.14 0.04 0.0150407 0.0134489 134 50 58 30 58 30
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 2.70 0.03 7116 1 0.01 -1 -1 30188 -1 -1 42 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65928 32 32 408 320 1 201 106 17 17 289 -1 unnamed_device 0.20 1012 0.16 0.00 3.3571 -114.332 -3.3571 3.3571 0.48 0.000361449 0.000317988 0.049951 0.0428472 32 2779 24 6.65987e+06 532476 554710. 1919.41 0.55 0.0993234 0.0858316 2406 23 2132 3377 250625 57596 3.66737 3.66737 -140.084 -3.66737 0 0 701300. 2426.64 0.15 0.06 0.0187931 0.016532 157 61 64 32 64 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 2.63 0.02 7012 1 0.01 -1 -1 30244 -1 -1 38 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65956 32 32 406 319 1 200 102 17 17 289 -1 unnamed_device 0.18 1024 0.18 0.00 2.67164 -94.3912 -2.67164 2.67164 0.48 0.000365284 0.000322014 0.0596378 0.0510142 32 2392 24 6.65987e+06 481764 554710. 1919.41 0.52 0.109383 0.0942611 2095 19 1510 2295 170573 40120 2.76771 2.76771 -115.489 -2.76771 0 0 701300. 2426.64 0.15 0.04 0.0165505 0.0146654 155 61 63 32 64 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 2.46 0.03 6952 1 0.01 -1 -1 30008 -1 -1 17 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65076 29 32 291 242 1 134 78 17 17 289 -1 unnamed_device 0.09 694 0.12 0.00 2.6657 -85.9876 -2.6657 2.6657 0.48 0.000284167 0.000247994 0.0495146 0.0427448 32 1513 20 6.65987e+06 215526 554710. 1919.41 0.47 0.0859998 0.0744499 1393 17 851 1208 88030 20968 2.57945 2.57945 -100.204 -2.57945 0 0 701300. 2426.64 0.15 0.03 0.0114304 0.0101179 96 28 58 29 29 29
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 2.61 0.03 6964 1 0.01 -1 -1 30032 -1 -1 17 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65448 32 32 335 291 1 154 81 17 17 289 -1 unnamed_device 0.26 816 0.12 0.00 2.97218 -86.7839 -2.97218 2.97218 0.47 0.000297796 0.00025988 0.0464933 0.0400962 28 1936 21 6.65987e+06 215526 500653. 1732.36 0.56 0.0859419 0.0739483 1608 21 1103 1571 109792 25578 2.65651 2.65651 -102.71 -2.65651 0 0 612192. 2118.31 0.14 0.04 0.0146543 0.0127811 111 79 0 0 82 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 2.97 0.03 7076 1 0.01 -1 -1 30196 -1 -1 37 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66004 31 32 367 283 1 196 100 17 17 289 -1 unnamed_device 0.10 1019 0.18 0.00 3.30984 -108.835 -3.30984 3.30984 0.48 0.00033593 0.000293275 0.0567091 0.0488804 34 2435 27 6.65987e+06 469086 585099. 2024.56 0.93 0.134497 0.116132 2009 21 1747 2753 176097 43035 3.50917 3.50917 -132.462 -3.50917 0 0 742403. 2568.87 0.15 0.04 0.0163671 0.0145254 151 29 93 31 31 31
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 2.46 0.02 6984 1 0.02 -1 -1 30208 -1 -1 31 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65296 29 32 301 258 1 150 92 17 17 289 -1 unnamed_device 0.22 837 0.13 0.00 2.86104 -83.5281 -2.86104 2.86104 0.47 0.0002699 0.000234933 0.044977 0.0382981 28 1772 22 6.65987e+06 393018 500653. 1732.36 0.46 0.0804447 0.0687939 1674 22 1037 1708 109001 25553 2.56131 2.56131 -95.9785 -2.56131 0 0 612192. 2118.31 0.13 0.03 0.013272 0.0116203 108 48 29 29 52 26
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 2.50 0.02 6992 1 0.01 -1 -1 30008 -1 -1 16 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65636 32 32 315 257 1 160 80 17 17 289 -1 unnamed_device 0.14 672 0.13 0.00 2.7929 -95.6123 -2.7929 2.7929 0.47 0.000295683 0.000258468 0.049652 0.043077 32 2133 28 6.65987e+06 202848 554710. 1919.41 0.54 0.0925849 0.0801019 1556 20 1340 2082 137297 34323 3.02217 3.02217 -117.497 -3.02217 0 0 701300. 2426.64 0.15 0.04 0.0135776 0.0119936 119 31 64 32 32 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 2.62 0.03 7056 1 0.02 -1 -1 30180 -1 -1 35 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65616 31 32 389 309 1 189 98 17 17 289 -1 unnamed_device 0.17 923 0.18 0.00 2.9951 -97.3706 -2.9951 2.9951 0.47 0.000366097 0.000312334 0.0629488 0.0537974 32 2042 19 6.65987e+06 443730 554710. 1919.41 0.51 0.108783 0.0937231 1795 22 1657 2256 153247 35468 2.82957 2.82957 -113.197 -2.82957 0 0 701300. 2426.64 0.15 0.04 0.0173956 0.0153653 141 60 58 31 62 31
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 2.49 0.02 6996 1 0.01 -1 -1 30056 -1 -1 16 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65412 31 32 310 264 1 148 79 17 17 289 -1 unnamed_device 0.22 821 0.12 0.00 2.49487 -83.6096 -2.49487 2.49487 0.47 0.000284581 0.00024803 0.0453176 0.0390863 28 2203 18 6.65987e+06 202848 500653. 1732.36 0.47 0.0807787 0.0697539 1827 20 1035 1728 145237 32204 2.63845 2.63845 -104.282 -2.63845 0 0 612192. 2118.31 0.13 0.04 0.0132614 0.0116703 105 49 31 31 53 31
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 2.62 0.02 7060 1 0.01 -1 -1 30144 -1 -1 32 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65340 32 32 384 308 1 184 96 17 17 289 -1 unnamed_device 0.21 1002 0.16 0.00 2.6657 -94.2453 -2.6657 2.6657 0.47 0.000336916 0.000295234 0.0553682 0.0475443 32 2491 22 6.65987e+06 405696 554710. 1919.41 0.52 0.101453 0.0875772 2110 20 1351 2264 180683 39702 2.72057 2.72057 -110.864 -2.72057 0 0 701300. 2426.64 0.15 0.04 0.01592 0.014066 136 56 52 26 64 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 2.83 0.02 7196 1 0.03 -1 -1 30160 -1 -1 36 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65804 31 32 424 341 1 195 99 17 17 289 -1 unnamed_device 0.30 871 0.17 0.00 3.1215 -98.25 -3.1215 3.1215 0.47 0.000394936 0.00033124 0.06141 0.052839 32 2097 23 6.65987e+06 456408 554710. 1919.41 0.53 0.111562 0.0965244 1860 22 1564 2292 160124 38404 3.04917 3.04917 -112.625 -3.04917 0 0 701300. 2426.64 0.15 0.04 0.0186605 0.0163092 148 88 31 31 92 31
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 2.49 0.02 7012 1 0.01 -1 -1 30072 -1 -1 18 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65580 32 32 334 280 1 160 82 17 17 289 -1 unnamed_device 0.12 705 0.13 0.00 2.31427 -81.4048 -2.31427 2.31427 0.47 0.000307075 0.000268152 0.0492946 0.0426804 32 2202 24 6.65987e+06 228204 554710. 1919.41 0.51 0.0903306 0.0781012 1692 22 1321 1992 150865 37478 2.72765 2.72765 -104.475 -2.72765 0 0 701300. 2426.64 0.15 0.04 0.0151422 0.0133324 115 54 32 32 60 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 2.88 0.02 6880 1 0.01 -1 -1 30064 -1 -1 18 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65256 32 32 340 284 1 164 82 17 17 289 -1 unnamed_device 0.30 881 0.10 0.00 2.66064 -96.261 -2.66064 2.66064 0.47 0.000304061 0.000266432 0.0380793 0.0330268 26 2430 27 6.65987e+06 228204 477104. 1650.88 0.80 0.085959 0.0740842 2133 19 1316 2148 180950 40734 2.85871 2.85871 -122.488 -2.85871 0 0 585099. 2024.56 0.13 0.04 0.0142957 0.0125279 121 60 32 32 62 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 2.67 0.02 7056 1 0.01 -1 -1 30480 -1 -1 36 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65668 32 32 408 320 1 198 100 17 17 289 -1 unnamed_device 0.18 1006 0.19 0.00 3.17284 -112.072 -3.17284 3.17284 0.47 0.000357707 0.000313054 0.0619322 0.0528622 32 2575 22 6.65987e+06 456408 554710. 1919.41 0.53 0.108651 0.0934946 2165 25 2124 3126 238607 54847 3.71451 3.71451 -138.547 -3.71451 0 0 701300. 2426.64 0.15 0.06 0.0207797 0.0183477 154 49 64 32 64 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 2.66 0.03 7252 1 0.01 -1 -1 30208 -1 -1 32 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65684 29 32 371 297 1 183 93 17 17 289 -1 unnamed_device 0.17 967 0.16 0.00 2.62993 -86.3235 -2.62993 2.62993 0.47 0.000337107 0.000296442 0.0573755 0.0492578 28 2153 20 6.65987e+06 405696 500653. 1732.36 0.62 0.102097 0.0879672 2003 17 1126 1753 134108 30389 2.79671 2.79671 -106.837 -2.79671 0 0 612192. 2118.31 0.13 0.04 0.0140222 0.0124535 133 54 56 29 58 29
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 2.75 0.03 7068 1 0.01 -1 -1 30484 -1 -1 37 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66152 32 32 470 382 1 200 101 17 17 289 -1 unnamed_device 0.28 1045 0.17 0.00 3.12784 -111.89 -3.12784 3.12784 0.49 0.000392321 0.000344326 0.0583236 0.0499142 28 2651 22 6.65987e+06 469086 500653. 1732.36 0.55 0.110905 0.0950229 2414 21 1862 2907 220823 50507 3.62731 3.62731 -144.502 -3.62731 0 0 612192. 2118.31 0.13 0.05 0.01893 0.0166968 156 117 0 0 128 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 2.50 0.02 6992 1 0.00 -1 -1 30032 -1 -1 16 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65060 31 32 261 214 1 146 79 17 17 289 -1 unnamed_device 0.11 619 0.10 0.00 2.32153 -77.1793 -2.32153 2.32153 0.47 0.000264713 0.000230964 0.0402726 0.0348188 30 1927 22 6.65987e+06 202848 526063. 1820.29 0.58 0.0761837 0.0655387 1315 18 850 1281 74547 19010 2.68871 2.68871 -94.7845 -2.68871 0 0 666494. 2306.21 0.15 0.03 0.0116032 0.0102792 105 -1 85 31 0 0
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 3.21 0.02 7152 1 0.02 -1 -1 30016 -1 -1 32 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65724 32 32 419 339 1 190 96 17 17 289 -1 unnamed_device 0.22 872 0.16 0.00 3.55944 -104.51 -3.55944 3.55944 0.48 0.000382394 0.000337998 0.0555651 0.047812 26 2852 39 6.65987e+06 405696 477104. 1650.88 1.10 0.127836 0.110535 2175 22 1878 2740 201961 48977 3.88397 3.88397 -138.116 -3.88397 0 0 585099. 2024.56 0.13 0.05 0.0184959 0.0162874 142 89 28 28 92 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 2.68 0.02 7044 1 0.01 -1 -1 29988 -1 -1 16 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64968 32 32 377 319 1 156 80 17 17 289 -1 unnamed_device 0.16 700 0.12 0.00 2.8021 -97.9 -2.8021 2.8021 0.47 0.000352158 0.000309499 0.0541787 0.0471034 32 2088 39 6.65987e+06 202848 554710. 1919.41 0.66 0.107857 0.0936367 1606 22 1335 1873 153255 35957 3.19217 3.19217 -121.888 -3.19217 0 0 701300. 2426.64 0.16 0.05 0.019892 0.0174466 115 93 0 0 96 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 2.58 0.03 7056 1 0.00 -1 -1 30188 -1 -1 35 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65396 32 32 402 317 1 196 99 17 17 289 -1 unnamed_device 0.19 975 0.15 0.00 2.63244 -92.5623 -2.63244 2.63244 0.47 0.0003606 0.000315492 0.0483197 0.0413981 32 2462 23 6.65987e+06 443730 554710. 1919.41 0.51 0.0960911 0.0830479 2107 25 1695 2488 188186 44353 2.92391 2.92391 -113.663 -2.92391 0 0 701300. 2426.64 0.15 0.05 0.0197435 0.0173534 149 59 61 32 64 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 2.90 0.02 7300 1 0.01 -1 -1 30420 -1 -1 43 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66524 32 32 501 383 1 232 107 17 17 289 -1 unnamed_device 0.19 1270 0.21 0.00 3.7509 -130.153 -3.7509 3.7509 0.47 0.000416319 0.000367376 0.067537 0.0580103 30 2977 23 6.65987e+06 545154 526063. 1820.29 0.64 0.125744 0.108783 2514 21 1739 2872 192979 40415 4.07717 4.07717 -155.203 -4.07717 0 0 666494. 2306.21 0.15 0.06 0.021377 0.0189773 186 81 64 32 96 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 2.42 0.02 6716 1 0.01 -1 -1 29916 -1 -1 15 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64032 30 32 249 232 1 118 77 17 17 289 -1 unnamed_device 0.16 522 0.08 0.00 1.98838 -62.9533 -1.98838 1.98838 0.47 0.000238347 0.00020544 0.0359024 0.0307399 32 1385 32 6.65987e+06 190170 554710. 1919.41 0.51 0.0701224 0.059986 1058 22 680 952 75649 18823 1.82185 1.82185 -73.8745 -1.82185 0 0 701300. 2426.64 0.15 0.03 0.0112386 0.00974263 83 51 0 0 53 30
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 2.35 0.03 6944 1 0.01 -1 -1 29968 -1 -1 16 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65068 30 32 299 247 1 137 78 17 17 289 -1 unnamed_device 0.06 586 0.12 0.00 2.81584 -85.4189 -2.81584 2.81584 0.49 0.000289052 0.000253443 0.0509068 0.0440336 32 1604 24 6.65987e+06 202848 554710. 1919.41 0.49 0.0895531 0.0775389 1305 23 1192 1771 131535 31654 2.72051 2.72051 -101.48 -2.72051 0 0 701300. 2426.64 0.15 0.04 0.0149545 0.0131805 96 29 60 30 30 30
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 2.56 0.02 6900 1 0.02 -1 -1 29928 -1 -1 18 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65352 32 32 315 257 1 167 82 17 17 289 -1 unnamed_device 0.11 816 0.14 0.00 2.7647 -97.4679 -2.7647 2.7647 0.47 0.000302808 0.000264776 0.0513688 0.0445768 32 2539 21 6.65987e+06 228204 554710. 1919.41 0.55 0.0916589 0.0795096 2014 18 1435 2491 194226 46189 3.08417 3.08417 -120.863 -3.08417 0 0 701300. 2426.64 0.15 0.04 0.0133679 0.0115898 126 31 64 32 32 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 2.57 0.03 6972 1 0.01 -1 -1 30120 -1 -1 34 25 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65044 25 32 259 222 1 138 91 17 17 289 -1 unnamed_device 0.11 656 0.15 0.00 2.59764 -73.2545 -2.59764 2.59764 0.48 0.000256262 0.000222333 0.0483945 0.0410134 26 1808 25 6.65987e+06 431052 477104. 1650.88 0.65 0.0853135 0.0723101 1493 21 992 1535 123748 27983 2.73951 2.73951 -91.7017 -2.73951 0 0 585099. 2024.56 0.13 0.03 0.0117927 0.0102984 103 19 50 25 25 25
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 2.72 0.03 7092 1 0.01 -1 -1 30280 -1 -1 20 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65380 32 32 433 347 1 193 84 17 17 289 -1 unnamed_device 0.28 1005 0.17 0.00 3.17278 -102.756 -3.17278 3.17278 0.47 0.000387854 0.000344328 0.0659457 0.0578237 28 2723 22 6.65987e+06 253560 500653. 1732.36 0.55 0.118934 0.104022 2295 20 1568 2849 201303 48808 3.69945 3.69945 -134.312 -3.69945 0 0 612192. 2118.31 0.13 0.05 0.0177623 0.0157147 147 84 32 32 94 32
+ fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 2.83 0.02 7144 1 0.02 -1 -1 30176 -1 -1 36 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65636 31 32 423 341 1 193 99 17 17 289 -1 unnamed_device 0.22 758 0.15 0.00 3.0303 -91.6931 -3.0303 3.0303 0.48 0.000393349 0.000329985 0.0518969 0.0444149 28 2289 27 6.65987e+06 456408 500653. 1732.36 0.70 0.108031 0.0930344 1951 20 1620 2492 168111 43288 3.06037 3.06037 -115.42 -3.06037 0 0 612192. 2118.31 0.14 0.04 0.0173775 0.0154019 145 88 29 29 93 31
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 4.09 0.02 7376 1 0.01 -1 -1 30508 -1 -1 25 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66476 32 32 439 351 1 194 89 17 17 289 -1 unnamed_device 0.42 1116 0.13 0.00 3.15069 -121.081 -3.15069 3.15069 0.49 0.000381234 0.000335393 0.0599204 0.0518817 44 2971 21 6.95648e+06 361892 787024. 2723.27 1.58 0.143853 0.124098 2518 21 1908 2984 278430 52861 4.10066 4.10066 -154.274 -4.10066 0 0 997811. 3452.63 0.20 0.06 0.018584 0.0163884 87 80 32 32 96 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 5.00 0.02 7148 1 0.01 -1 -1 30260 -1 -1 14 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66216 30 32 412 333 1 179 76 17 17 289 -1 unnamed_device 1.57 938 0.10 0.00 3.3323 -114.6 -3.3323 3.3323 0.49 0.000358666 0.000316286 0.0513494 0.0449755 38 2530 33 6.95648e+06 202660 678818. 2348.85 1.50 0.139239 0.120255 2083 21 1722 2591 204962 41713 3.98632 3.98632 -142.947 -3.98632 0 0 902133. 3121.57 0.19 0.06 0.0192913 0.0170709 76 78 30 30 89 30
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 6.14 0.03 7036 1 0.01 -1 -1 30240 -1 -1 19 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66412 32 32 388 310 1 179 83 17 17 289 -1 unnamed_device 0.63 976 0.11 0.00 3.04869 -113.012 -3.04869 3.04869 0.48 0.00033069 0.00028871 0.0494052 0.0424916 38 2845 33 6.95648e+06 275038 678818. 2348.85 3.47 0.134775 0.115387 2240 46 2257 3289 697757 310247 4.51766 4.51766 -152.361 -4.51766 0 0 902133. 3121.57 0.17 0.16 0.0317984 0.0277004 77 50 54 32 64 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 3.92 0.02 7048 1 0.01 -1 -1 30156 -1 -1 16 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65996 29 32 347 271 1 176 77 17 17 289 -1 unnamed_device 0.30 883 0.11 0.00 3.4027 -109.285 -3.4027 3.4027 0.48 0.000331024 0.000290182 0.0509525 0.0441949 46 2499 41 6.95648e+06 231611 828058. 2865.25 1.66 0.135913 0.117321 2033 20 1572 2338 230835 44439 4.05536 4.05536 -142.011 -4.05536 0 0 1.01997e+06 3529.29 0.20 0.05 0.0160552 0.0142134 76 25 87 29 29 29
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 4.20 0.03 7052 1 0.01 -1 -1 30060 -1 -1 13 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66184 32 32 377 289 1 187 77 17 17 289 -1 unnamed_device 0.54 777 0.11 0.00 3.04139 -111.861 -3.04139 3.04139 0.48 0.000363875 0.000320222 0.0546971 0.047818 50 2791 26 6.95648e+06 188184 902133. 3121.57 1.63 0.144588 0.12564 2240 33 2631 4490 582464 140842 3.98006 3.98006 -148.159 -3.98006 0 0 1.08113e+06 3740.92 0.21 0.11 0.0243618 0.0213564 78 31 96 32 32 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 3.97 0.02 7140 1 0.01 -1 -1 30160 -1 -1 29 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66092 32 32 403 317 1 191 93 17 17 289 -1 unnamed_device 0.57 951 0.13 0.00 2.6364 -100.09 -2.6364 2.6364 0.48 0.000382356 0.000325526 0.0558998 0.0479384 46 2241 24 6.95648e+06 419795 828058. 2865.25 1.39 0.139201 0.119755 1834 18 1348 1911 147180 30180 2.86622 2.86622 -118.64 -2.86622 0 0 1.01997e+06 3529.29 0.22 0.04 0.0156814 0.0139488 88 61 63 32 63 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 6.42 0.03 7052 1 0.01 -1 -1 30056 -1 -1 15 27 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65076 27 32 275 232 1 129 74 17 17 289 -1 unnamed_device 3.48 492 0.09 0.00 2.5173 -78.6587 -2.5173 2.5173 0.48 0.000265376 0.000230107 0.0419289 0.0362103 34 1734 26 6.95648e+06 217135 618332. 2139.56 1.12 0.103228 0.0882163 1324 20 999 1533 114465 26665 2.88157 2.88157 -102.221 -2.88157 0 0 787024. 2723.27 0.16 0.03 0.0122687 0.0107781 55 26 54 27 27 27
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 5.78 0.02 7072 1 0.02 -1 -1 30008 -1 -1 17 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65548 31 32 319 244 1 178 80 17 17 289 -1 unnamed_device 0.45 768 0.11 0.00 2.6144 -90.0945 -2.6144 2.6144 0.49 0.00034062 0.000290484 0.0495454 0.0427915 38 3005 50 6.95648e+06 246087 678818. 2348.85 3.42 0.140406 0.11998 1923 19 1341 1927 166996 38339 3.12317 3.12317 -116.707 -3.12317 0 0 902133. 3121.57 0.17 0.04 0.014094 0.0124443 77 -1 115 31 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 4.81 0.02 7108 1 0.01 -1 -1 30084 -1 -1 11 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65324 31 32 340 294 1 143 74 17 17 289 -1 unnamed_device 1.24 655 0.09 0.00 2.60155 -83.2493 -2.60155 2.60155 0.48 0.000308109 0.000268672 0.0439193 0.0380928 40 2213 43 6.95648e+06 159232 706193. 2443.58 1.62 0.132114 0.113287 1787 38 1447 2239 444261 171529 3.26742 3.26742 -121.108 -3.26742 0 0 926341. 3205.33 0.18 0.10 0.0225452 0.0194885 57 81 0 0 84 31
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 4.60 0.01 6824 1 0.01 -1 -1 30072 -1 -1 10 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65656 32 32 315 257 1 156 74 17 17 289 -1 unnamed_device 0.69 691 0.09 0.00 2.43785 -96.0677 -2.43785 2.43785 0.48 0.000301634 0.000265523 0.0450156 0.0393277 38 2272 26 6.95648e+06 144757 678818. 2348.85 1.84 0.117214 0.101303 1799 22 1616 2316 237878 47145 3.39852 3.39852 -129.988 -3.39852 0 0 902133. 3121.57 0.26 0.09 0.0257967 0.0227582 62 31 64 32 32 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 5.03 0.02 7100 1 0.01 -1 -1 30060 -1 -1 12 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65376 30 32 328 276 1 148 74 17 17 289 -1 unnamed_device 1.42 679 0.09 0.00 2.7416 -98.2679 -2.7416 2.7416 0.49 0.000331586 0.000293529 0.0442314 0.0384881 36 2031 28 6.95648e+06 173708 648988. 2245.63 1.58 0.124535 0.106884 1659 20 1358 1798 167597 35050 3.36447 3.36447 -125.955 -3.36447 0 0 828058. 2865.25 0.22 0.06 0.0215508 0.0189266 60 58 30 30 60 30
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 6.37 0.03 6964 1 0.01 -1 -1 30208 -1 -1 12 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65288 32 32 332 281 1 150 76 17 17 289 -1 unnamed_device 0.70 749 0.09 0.00 2.4781 -91.75 -2.4781 2.4781 0.57 0.000309535 0.000269764 0.0441035 0.0381724 36 2426 49 6.95648e+06 173708 648988. 2245.63 3.69 0.129253 0.110097 1927 34 1534 2153 304130 98680 3.32477 3.32477 -122.072 -3.32477 0 0 828058. 2865.25 0.16 0.07 0.0201602 0.0175486 60 57 25 25 64 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 6.24 0.03 7140 1 0.01 -1 -1 30060 -1 -1 21 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66100 32 32 387 306 1 180 85 17 17 289 -1 unnamed_device 1.03 997 0.12 0.00 2.7086 -107.225 -2.7086 2.7086 0.52 0.00034414 0.000302962 0.0522647 0.0453659 38 2779 36 6.95648e+06 303989 678818. 2348.85 3.23 0.144105 0.12393 2360 22 1753 2634 266362 50930 3.52272 3.52272 -141.997 -3.52272 0 0 902133. 3121.57 0.17 0.06 0.0176787 0.0155845 79 55 64 32 57 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 4.64 0.02 7036 1 0.02 -1 -1 30072 -1 -1 24 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66264 32 32 408 320 1 194 88 17 17 289 -1 unnamed_device 0.89 940 0.13 0.00 3.11789 -118.309 -3.11789 3.11789 0.48 0.000360761 0.000317477 0.0536056 0.0462536 44 2694 38 6.95648e+06 347416 787024. 2723.27 1.71 0.156481 0.135192 2043 25 2229 3064 277882 55780 3.98816 3.98816 -149.397 -3.98816 0 0 997811. 3452.63 0.19 0.07 0.0256477 0.0227106 87 60 64 32 64 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 4.24 0.02 7064 1 0.01 -1 -1 30108 -1 -1 13 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64936 29 32 276 232 1 141 74 17 17 289 -1 unnamed_device 0.91 636 0.10 0.00 2.64555 -82.6383 -2.64555 2.64555 0.50 0.000319284 0.000280167 0.0468052 0.0405605 36 1840 36 6.95648e+06 188184 648988. 2245.63 1.41 0.12012 0.102666 1720 21 1145 1701 166750 34187 2.89257 2.89257 -108.542 -2.89257 0 0 828058. 2865.25 0.16 0.04 0.0131092 0.0114778 58 21 58 29 24 24
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 5.02 0.02 7084 1 0.01 -1 -1 30040 -1 -1 13 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66392 32 32 402 316 1 186 77 17 17 289 -1 unnamed_device 1.28 744 0.12 0.00 2.6493 -97.2553 -2.6493 2.6493 0.49 0.000373136 0.000327944 0.0554066 0.0486025 54 2142 48 6.95648e+06 188184 949917. 3286.91 1.63 0.152871 0.133 1656 21 1924 3042 279258 65189 3.45357 3.45357 -124.216 -3.45357 0 0 1.17392e+06 4061.99 0.22 0.06 0.0178658 0.0158049 78 60 64 32 62 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 4.21 0.03 7084 1 0.01 -1 -1 30092 -1 -1 21 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66280 32 32 384 304 1 179 85 17 17 289 -1 unnamed_device 1.02 697 0.12 0.00 2.56315 -94.4902 -2.56315 2.56315 0.48 0.000345678 0.000300485 0.0537975 0.0459473 44 2174 26 6.95648e+06 303989 787024. 2723.27 1.25 0.134602 0.115112 1567 20 1474 2020 150221 36139 3.12917 3.12917 -117.866 -3.12917 0 0 997811. 3452.63 0.19 0.04 0.0159713 0.0141235 79 54 64 32 56 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 4.04 0.03 6900 1 0.01 -1 -1 29932 -1 -1 20 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65576 32 32 340 285 1 156 84 17 17 289 -1 unnamed_device 0.67 609 0.10 0.00 2.04276 -77.3276 -2.04276 2.04276 0.48 0.000307091 0.000267911 0.0454518 0.0392838 46 1747 24 6.95648e+06 289514 828058. 2865.25 1.40 0.117572 0.100594 1258 19 1047 1341 86963 22496 2.24873 2.24873 -96.3801 -2.24873 0 0 1.01997e+06 3529.29 0.19 0.03 0.0142171 0.012591 67 62 29 29 64 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 3.28 0.02 6756 1 0.01 -1 -1 29960 -1 -1 10 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65544 30 32 229 211 1 118 72 17 17 289 -1 unnamed_device 0.37 374 0.07 0.00 1.84156 -63.6994 -1.84156 1.84156 0.51 0.000222582 0.000191755 0.0331331 0.0284524 40 1238 27 6.95648e+06 144757 706193. 2443.58 1.03 0.083799 0.0713628 1033 21 722 939 74410 19668 2.36733 2.36733 -88.5527 -2.36733 0 0 926341. 3205.33 0.19 0.03 0.0108289 0.00946067 45 29 24 24 30 30
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 5.96 0.03 6944 1 0.02 -1 -1 30220 -1 -1 11 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65484 31 32 337 282 1 152 74 17 17 289 -1 unnamed_device 1.37 868 0.09 0.00 3.35745 -120.336 -3.35745 3.35745 0.48 0.000305685 0.000269017 0.042805 0.0374331 36 2503 50 6.95648e+06 159232 648988. 2245.63 2.76 0.131372 0.113091 1984 19 1002 1417 143849 29005 3.85502 3.85502 -145.047 -3.85502 0 0 828058. 2865.25 0.16 0.04 0.0139183 0.0122769 61 55 31 31 62 31
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 5.15 0.02 7048 1 0.03 -1 -1 30120 -1 -1 21 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66372 32 32 367 284 1 184 85 17 17 289 -1 unnamed_device 0.43 781 0.12 0.00 3.10369 -109.018 -3.10369 3.10369 0.50 0.000342947 0.000302731 0.052086 0.0452593 38 2569 43 6.95648e+06 303989 678818. 2348.85 2.75 0.147785 0.126924 1994 21 1723 2310 230960 53136 4.13172 4.13172 -147.382 -4.13172 0 0 902133. 3121.57 0.17 0.07 0.0206437 0.0182259 81 31 91 32 32 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 4.32 0.03 7132 1 0.02 -1 -1 30468 -1 -1 27 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66444 32 32 461 376 1 188 91 17 17 289 -1 unnamed_device 0.83 990 0.14 0.00 3.03469 -110.468 -3.03469 3.03469 0.49 0.000380951 0.000332843 0.060932 0.0524381 42 2787 35 6.95648e+06 390843 744469. 2576.02 1.48 0.156793 0.134655 2325 20 1558 2414 227384 45111 3.81596 3.81596 -140.315 -3.81596 0 0 949917. 3286.91 0.18 0.05 0.0177687 0.0157101 85 108 0 0 125 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 3.52 0.03 6760 1 0.01 -1 -1 30104 -1 -1 13 26 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65664 26 32 205 193 1 108 71 17 17 289 -1 unnamed_device 0.73 337 0.08 0.00 1.82136 -56.0211 -1.82136 1.82136 0.50 0.000210653 0.000180503 0.0358994 0.0306312 38 1157 29 6.95648e+06 188184 678818. 2348.85 0.94 0.0832093 0.0704532 833 23 603 734 51921 13363 1.83357 1.83357 -69.4941 -1.83357 0 0 902133. 3121.57 0.17 0.02 0.0102854 0.00892325 44 21 26 26 22 22
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 4.59 0.02 7068 1 0.01 -1 -1 30016 -1 -1 12 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65892 32 32 334 252 1 182 76 17 17 289 -1 unnamed_device 0.86 791 0.10 0.00 3.4936 -115.855 -3.4936 3.4936 0.48 0.00032821 0.000288559 0.0458179 0.0401369 48 2500 37 6.95648e+06 173708 865456. 2994.66 1.84 0.129581 0.112121 1940 20 1667 2532 286490 66718 4.24172 4.24172 -150.705 -4.24172 0 0 1.05005e+06 3633.38 0.20 0.06 0.0154151 0.0136935 75 -1 122 32 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 3.22 0.02 6752 1 0.01 -1 -1 29968 -1 -1 8 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65408 32 32 200 183 1 119 72 17 17 289 -1 unnamed_device 0.26 476 0.07 0.00 1.77736 -64.3657 -1.77736 1.77736 0.49 0.000212377 0.000182684 0.030507 0.0261633 36 1517 42 6.95648e+06 115805 648988. 2245.63 1.13 0.0857764 0.0727545 1183 25 915 1229 135293 39663 2.38028 2.38028 -89.2465 -2.38028 0 0 828058. 2865.25 0.16 0.04 0.0114713 0.00989647 44 -1 53 32 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 4.49 0.02 7100 1 0.01 -1 -1 30392 -1 -1 24 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65992 32 32 377 289 1 188 88 17 17 289 -1 unnamed_device 0.59 1028 0.12 0.00 3.15089 -120.35 -3.15089 3.15089 0.48 0.000369699 0.000311557 0.050454 0.0430209 42 3033 41 6.95648e+06 347416 744469. 2576.02 1.92 0.141815 0.121778 2423 23 1989 2978 306056 58697 4.06326 4.06326 -153.114 -4.06326 0 0 949917. 3286.91 0.18 0.07 0.0220988 0.0195475 84 21 96 32 32 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 3.63 0.03 7152 1 0.01 -1 -1 29924 -1 -1 27 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66076 32 32 338 254 1 188 91 17 17 289 -1 unnamed_device 0.39 893 0.12 0.00 2.79776 -101.536 -2.79776 2.79776 0.48 0.000330983 0.000288822 0.047526 0.0412073 40 2307 21 6.95648e+06 390843 706193. 2443.58 1.33 0.120675 0.104329 2171 26 1834 2649 366832 109941 3.16512 3.16512 -125.332 -3.16512 0 0 926341. 3205.33 0.18 0.08 0.0186936 0.0164147 86 -1 124 32 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 4.31 0.02 7156 1 0.03 -1 -1 30356 -1 -1 28 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66040 32 32 408 320 1 189 92 17 17 289 -1 unnamed_device 0.38 859 0.13 0.00 3.13369 -113.448 -3.13369 3.13369 0.49 0.000363067 0.000319377 0.0536998 0.0466528 46 2621 49 6.95648e+06 405319 828058. 2865.25 1.95 0.156144 0.134409 1939 23 2123 3415 243844 53292 4.14646 4.14646 -149.758 -4.14646 0 0 1.01997e+06 3529.29 0.20 0.05 0.018653 0.0164985 87 54 64 32 64 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 4.51 0.03 6996 1 0.01 -1 -1 30008 -1 -1 10 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65100 32 32 295 247 1 146 74 17 17 289 -1 unnamed_device 1.05 794 0.09 0.00 2.3791 -91.8724 -2.3791 2.3791 0.48 0.000286009 0.000249436 0.0416718 0.0361947 36 2216 25 6.95648e+06 144757 648988. 2245.63 1.60 0.108912 0.0935664 1844 22 1167 1751 168131 32811 2.87667 2.87667 -115.09 -2.87667 0 0 828058. 2865.25 0.16 0.04 0.0143695 0.0126035 57 31 54 32 32 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 10.80 0.03 6980 1 0.01 -1 -1 30068 -1 -1 11 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65236 30 32 299 247 1 148 73 17 17 289 -1 unnamed_device 6.83 582 0.08 0.00 2.7464 -92.7403 -2.7464 2.7464 0.48 0.000287605 0.000252229 0.0412215 0.0359372 40 1827 28 6.95648e+06 159232 706193. 2443.58 1.94 0.114375 0.0980619 1626 55 2028 2889 771002 425909 3.67117 3.67117 -131.702 -3.67117 0 0 926341. 3205.33 0.18 0.18 0.0293888 0.0256654 60 29 60 30 30 30
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 4.74 0.02 6920 1 0.01 -1 -1 30052 -1 -1 13 28 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65168 28 32 283 237 1 144 73 17 17 289 -1 unnamed_device 0.50 821 0.09 0.00 2.5423 -90.2463 -2.5423 2.5423 0.56 0.000275683 0.000241365 0.0418694 0.0363523 36 2259 45 6.95648e+06 188184 648988. 2245.63 2.37 0.123015 0.105592 1956 19 1277 1973 203223 40370 3.12597 3.12597 -117.191 -3.12597 0 0 828058. 2865.25 0.17 0.04 0.0127452 0.0109143 61 27 56 28 28 28
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 3.51 0.03 6800 1 0.01 -1 -1 29948 -1 -1 10 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65224 32 32 284 226 1 160 74 17 17 289 -1 unnamed_device 0.20 647 0.09 0.00 2.43165 -95.1527 -2.43165 2.43165 0.49 0.000279463 0.000244397 0.0424007 0.0368863 40 1857 24 6.95648e+06 144757 706193. 2443.58 1.37 0.109382 0.0942707 1749 25 1754 2446 244575 56035 3.09962 3.09962 -124.883 -3.09962 0 0 926341. 3205.33 0.20 0.05 0.0154472 0.0135611 64 -1 96 32 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 4.37 0.02 7000 1 0.01 -1 -1 30260 -1 -1 21 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65308 31 32 305 251 1 156 84 17 17 289 -1 unnamed_device 0.24 827 0.10 0.00 2.5943 -99.1125 -2.5943 2.5943 0.48 0.000290316 0.000251106 0.0410237 0.0353297 38 2282 39 6.95648e+06 303989 678818. 2348.85 2.17 0.114252 0.0974958 1933 21 1351 2018 196717 39352 3.29527 3.29527 -122.575 -3.29527 0 0 902133. 3121.57 0.18 0.05 0.0147394 0.012962 68 26 61 31 31 31
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 4.06 0.02 7108 1 0.01 -1 -1 30188 -1 -1 18 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65404 29 32 316 268 1 148 79 17 17 289 -1 unnamed_device 0.61 794 0.09 0.00 2.00176 -79.1632 -2.00176 2.00176 0.53 0.000290673 0.0002534 0.0395099 0.0340405 36 2072 29 6.95648e+06 260562 648988. 2245.63 1.58 0.109418 0.0935744 1874 22 1295 1723 175331 35049 2.43813 2.43813 -100.942 -2.43813 0 0 828058. 2865.25 0.16 0.04 0.0141511 0.0123967 64 55 29 29 57 29
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 4.80 0.02 7276 1 0.02 -1 -1 30132 -1 -1 28 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66652 32 32 424 311 1 219 92 17 17 289 -1 unnamed_device 0.79 1172 0.14 0.00 3.20405 -122.513 -3.20405 3.20405 0.49 0.000382563 0.000336293 0.0588416 0.0509159 44 3307 32 6.95648e+06 405319 787024. 2723.27 1.93 0.153604 0.132264 2665 28 2572 3950 585596 237070 3.86102 3.86102 -153.643 -3.86102 0 0 997811. 3452.63 0.19 0.13 0.0244624 0.0216295 100 26 128 32 27 27
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 4.60 0.02 7080 1 0.01 -1 -1 30088 -1 -1 28 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66308 32 32 404 318 1 190 92 17 17 289 -1 unnamed_device 0.65 971 0.13 0.00 2.6866 -103.249 -2.6866 2.6866 0.51 0.000386602 0.000326827 0.0575281 0.0495254 38 2474 47 6.95648e+06 405319 678818. 2348.85 1.94 0.163102 0.140101 2028 21 1910 2745 218814 43533 3.13697 3.13697 -127.309 -3.13697 0 0 902133. 3121.57 0.17 0.05 0.0177591 0.0156556 88 62 62 32 64 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 5.96 0.02 6876 1 0.01 -1 -1 30252 -1 -1 15 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66032 31 32 355 304 1 150 78 17 17 289 -1 unnamed_device 0.81 745 0.10 0.00 2.76796 -97.6128 -2.76796 2.76796 0.50 0.000351435 0.000309443 0.0437872 0.0379185 36 2405 39 6.95648e+06 217135 648988. 2245.63 3.29 0.124102 0.105964 1874 21 1238 1718 164558 32566 3.23442 3.23442 -121.557 -3.23442 0 0 828058. 2865.25 0.16 0.04 0.0146471 0.0128122 62 77 0 0 89 31
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 3.80 0.02 7136 1 0.01 -1 -1 30084 -1 -1 14 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66216 31 32 393 311 1 186 77 17 17 289 -1 unnamed_device 0.54 939 0.11 0.00 2.76476 -100.162 -2.76476 2.76476 0.48 0.000384404 0.000340715 0.0546539 0.0477442 44 2470 25 6.95648e+06 202660 787024. 2723.27 1.36 0.152305 0.132233 1996 22 1729 2602 186680 39413 2.99652 2.99652 -123.358 -2.99652 0 0 997811. 3452.63 0.19 0.05 0.0174949 0.0154799 79 59 60 30 62 31
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 5.64 0.02 7192 1 0.01 -1 -1 30316 -1 -1 14 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66460 31 32 457 373 1 185 77 17 17 289 -1 unnamed_device 1.55 872 0.12 0.00 3.97819 -127.461 -3.97819 3.97819 0.50 0.000388512 0.000342779 0.0591086 0.0518162 40 2883 28 6.95648e+06 202660 706193. 2443.58 2.11 0.153767 0.132492 2254 23 1679 2549 260477 55708 4.64131 4.64131 -160.535 -4.64131 0 0 926341. 3205.33 0.18 0.06 0.0203415 0.0179076 78 111 0 0 124 31
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 5.26 0.03 7160 1 0.02 -1 -1 30104 -1 -1 13 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66464 31 32 415 335 1 180 76 17 17 289 -1 unnamed_device 1.34 796 0.11 0.00 3.66159 -110.025 -3.66159 3.66159 0.48 0.000369548 0.000325383 0.0555874 0.0487558 44 2843 35 6.95648e+06 188184 787024. 2723.27 1.98 0.14992 0.129481 1799 20 1332 2064 157814 35019 4.55811 4.55811 -140.839 -4.55811 0 0 997811. 3452.63 0.20 0.04 0.0171223 0.015245 75 86 31 31 89 31
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 5.15 0.03 7132 1 0.02 -1 -1 30196 -1 -1 25 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66416 31 32 393 311 1 185 88 17 17 289 -1 unnamed_device 0.61 1038 0.12 0.00 2.89006 -104.533 -2.89006 2.89006 0.48 0.000351888 0.000310122 0.0531276 0.0461438 38 2813 38 6.95648e+06 361892 678818. 2348.85 2.59 0.143491 0.123692 2312 22 1889 2942 279793 54743 3.40667 3.40667 -132.501 -3.40667 0 0 902133. 3121.57 0.17 0.08 0.0224664 0.0197305 85 58 60 31 62 31
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 3.86 0.03 7200 1 0.03 -1 -1 30388 -1 -1 27 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65924 32 32 408 320 1 190 91 17 17 289 -1 unnamed_device 0.43 965 0.11 0.00 3.16669 -117.733 -3.16669 3.16669 0.48 0.000345304 0.000301637 0.0467896 0.0401295 48 2536 24 6.95648e+06 390843 865456. 2994.66 1.43 0.126145 0.108215 2329 24 2170 3413 384631 73493 4.32166 4.32166 -155.414 -4.32166 0 0 1.05005e+06 3633.38 0.20 0.07 0.019139 0.0168301 87 42 64 32 64 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 4.32 0.03 7280 1 0.01 -1 -1 30288 -1 -1 31 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66520 32 32 497 381 1 222 95 17 17 289 -1 unnamed_device 0.74 1121 0.16 0.00 3.20405 -117.847 -3.20405 3.20405 0.48 0.000425699 0.000376526 0.0684458 0.0593845 46 2903 25 6.95648e+06 448746 828058. 2865.25 1.53 0.168608 0.145988 2347 22 2228 3246 241356 49998 4.06152 4.06152 -152.622 -4.06152 0 0 1.01997e+06 3529.29 0.19 0.06 0.0217134 0.0190352 104 91 62 32 96 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 3.80 0.03 6912 1 0.01 -1 -1 30188 -1 -1 11 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64976 31 32 307 252 1 152 74 17 17 289 -1 unnamed_device 0.51 579 0.09 0.00 2.84796 -97.5148 -2.84796 2.84796 0.48 0.000289903 0.000253943 0.0432892 0.0377268 44 1888 37 6.95648e+06 159232 787024. 2723.27 1.37 0.121728 0.104929 1370 24 1395 1863 136146 34645 3.25122 3.25122 -120.716 -3.25122 0 0 997811. 3452.63 0.19 0.04 0.015232 0.0133617 62 24 62 31 31 31
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 7.41 0.03 7068 1 0.01 -1 -1 30196 -1 -1 27 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66316 31 32 397 313 1 188 90 17 17 289 -1 unnamed_device 0.51 1054 0.12 0.00 3.4998 -124.368 -3.4998 3.4998 0.50 0.000349615 0.000301068 0.0518728 0.0447773 38 2908 40 6.95648e+06 390843 678818. 2348.85 4.74 0.145283 0.124248 2476 22 1959 3001 302981 61688 4.20077 4.20077 -155.683 -4.20077 0 0 902133. 3121.57 0.24 0.10 0.0333219 0.0295806 86 59 62 31 62 31
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 4.01 0.03 7068 1 0.01 -1 -1 30328 -1 -1 26 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66392 32 32 398 314 1 188 90 17 17 289 -1 unnamed_device 0.66 1112 0.13 0.00 2.79476 -102.289 -2.79476 2.79476 0.48 0.000351259 0.000309273 0.0532144 0.0460677 48 2788 24 6.95648e+06 376368 865456. 2994.66 1.36 0.133952 0.115918 2424 22 1712 2798 275399 52186 3.03987 3.03987 -125.794 -3.03987 0 0 1.05005e+06 3633.38 0.20 0.06 0.017501 0.0154344 85 54 62 32 62 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 4.71 0.03 6992 1 0.01 -1 -1 30064 -1 -1 13 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65852 32 32 346 258 1 188 77 17 17 289 -1 unnamed_device 0.76 775 0.11 0.00 3.04139 -111.528 -3.04139 3.04139 0.49 0.000337525 0.000297451 0.0517085 0.0453382 44 2829 30 6.95648e+06 188184 787024. 2723.27 2.03 0.134942 0.116674 2047 24 2140 3707 355030 74920 4.21356 4.21356 -151.662 -4.21356 0 0 997811. 3452.63 0.20 0.07 0.0179487 0.015837 79 -1 128 32 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 4.95 0.02 7064 1 0.01 -1 -1 30280 -1 -1 23 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66412 32 32 425 344 1 182 87 17 17 289 -1 unnamed_device 1.12 725 0.12 0.00 2.5503 -93.5413 -2.5503 2.5503 0.48 0.000365569 0.000318847 0.0544134 0.0470514 46 2340 33 6.95648e+06 332941 828058. 2865.25 1.72 0.141492 0.121625 1749 29 1680 2551 256355 72646 3.36257 3.36257 -122.226 -3.36257 0 0 1.01997e+06 3529.29 0.25 0.06 0.0218277 0.0191308 81 81 25 25 96 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 4.16 0.03 7080 1 0.01 -1 -1 30100 -1 -1 28 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66076 32 32 396 312 1 186 92 17 17 289 -1 unnamed_device 0.69 873 0.13 0.00 2.6023 -98.4734 -2.6023 2.6023 0.48 0.000350008 0.000307345 0.0535811 0.0463525 46 2303 24 6.95648e+06 405319 828058. 2865.25 1.47 0.134158 0.115677 1988 19 1497 2251 190591 39303 3.04467 3.04467 -121.594 -3.04467 0 0 1.01997e+06 3529.29 0.19 0.05 0.016059 0.0142306 85 58 64 32 60 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 4.47 0.03 7136 1 0.01 -1 -1 30196 -1 -1 29 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66604 32 32 406 319 1 192 93 17 17 289 -1 unnamed_device 0.37 978 0.13 0.00 2.56315 -99.1407 -2.56315 2.56315 0.50 0.000381195 0.000320452 0.057803 0.049284 40 2826 27 6.95648e+06 419795 706193. 2443.58 2.13 0.144722 0.123572 2457 24 1971 2968 323895 65444 3.49087 3.49087 -131.958 -3.49087 0 0 926341. 3205.33 0.18 0.06 0.019168 0.0168443 89 61 63 32 64 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 4.18 0.03 7176 1 0.02 -1 -1 30396 -1 -1 28 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66144 32 32 377 289 1 187 92 17 17 289 -1 unnamed_device 0.53 812 0.13 0.00 3.16669 -114.886 -3.16669 3.16669 0.48 0.000344806 0.000302413 0.052909 0.0456551 46 2508 24 6.95648e+06 405319 828058. 2865.25 1.68 0.131214 0.112854 2019 24 2082 3255 290092 59632 3.91896 3.91896 -146.134 -3.91896 0 0 1.01997e+06 3529.29 0.19 0.06 0.0183499 0.0161657 86 21 96 32 32 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 5.58 0.03 7184 1 0.01 -1 -1 30300 -1 -1 30 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66448 32 32 408 320 1 189 94 17 17 289 -1 unnamed_device 0.69 926 0.11 0.00 3.12269 -117.958 -3.12269 3.12269 0.48 0.000363065 0.000315774 0.0456751 0.0389621 38 2619 31 6.95648e+06 434271 678818. 2348.85 2.97 0.134273 0.114612 2160 22 2034 2903 225413 46591 4.21056 4.21056 -156.243 -4.21056 0 0 902133. 3121.57 0.17 0.05 0.0177789 0.0157509 88 50 64 32 64 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 7.08 0.02 7268 1 0.01 -1 -1 30388 -1 -1 25 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66568 31 32 451 369 1 185 88 17 17 289 -1 unnamed_device 0.90 949 0.14 0.00 3.56395 -118.102 -3.56395 3.56395 0.49 0.000370307 0.000324404 0.0576198 0.0499621 38 3020 31 6.95648e+06 361892 678818. 2348.85 4.23 0.15252 0.130622 2302 23 1791 2931 257653 50529 3.99436 3.99436 -143.76 -3.99436 0 0 902133. 3121.57 0.17 0.06 0.019184 0.0168371 84 110 0 0 122 31
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 5.29 0.02 7168 1 0.01 -1 -1 30372 -1 -1 13 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66612 32 32 433 347 1 192 77 17 17 289 -1 unnamed_device 0.65 1007 0.11 0.00 3.17215 -115.113 -3.17215 3.17215 0.48 0.000380091 0.000336173 0.0556399 0.0489802 38 3046 23 6.95648e+06 188184 678818. 2348.85 2.66 0.142918 0.123782 2432 30 2219 3784 474327 155144 3.79686 3.79686 -145.715 -3.79686 0 0 902133. 3121.57 0.17 0.14 0.0329194 0.0289248 80 86 32 32 94 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 3.41 0.03 6916 1 0.01 -1 -1 30180 -1 -1 23 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65464 32 32 313 256 1 160 87 17 17 289 -1 unnamed_device 0.15 694 0.11 0.00 2.7494 -98.5058 -2.7494 2.7494 0.47 0.000296128 0.000257093 0.0445814 0.0382231 48 2009 24 6.95648e+06 332941 865456. 2994.66 1.33 0.109346 0.0935456 1713 23 1540 2381 230895 46583 3.24692 3.24692 -119.467 -3.24692 0 0 1.05005e+06 3633.38 0.21 0.05 0.0152856 0.013364 71 20 63 32 32 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 5.11 0.03 6916 1 0.01 -1 -1 29968 -1 -1 10 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66172 32 32 371 315 1 158 74 17 17 289 -1 unnamed_device 0.74 756 0.10 0.00 2.5393 -95.9874 -2.5393 2.5393 0.47 0.000321415 0.000281185 0.0501867 0.0436132 38 2512 41 6.95648e+06 144757 678818. 2348.85 2.53 0.134597 0.11523 1985 21 1430 2152 197690 40765 3.27832 3.27832 -127.63 -3.27832 0 0 902133. 3121.57 0.17 0.05 0.0156253 0.0137113 63 91 0 0 94 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 5.19 0.02 7520 1 0.01 -1 -1 30384 -1 -1 30 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66664 32 32 470 352 1 223 94 17 17 289 -1 unnamed_device 0.44 1126 0.14 0.00 3.77644 -137.005 -3.77644 3.77644 0.49 0.000419448 0.000369086 0.0554858 0.0479914 44 3705 40 6.95648e+06 434271 787024. 2723.27 2.69 0.167198 0.143911 2742 22 2582 4254 381550 75743 4.90641 4.90641 -181.225 -4.90641 0 0 997811. 3452.63 0.19 0.07 0.0211906 0.018777 103 53 96 32 64 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 4.43 0.03 7196 1 0.01 -1 -1 30044 -1 -1 25 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66148 32 32 369 285 1 186 89 17 17 289 -1 unnamed_device 0.65 982 0.11 0.00 2.7698 -108.265 -2.7698 2.7698 0.50 0.000348493 0.000306963 0.0486746 0.0422907 38 2392 32 6.95648e+06 361892 678818. 2348.85 1.84 0.137427 0.118557 2078 20 1401 1878 170079 33986 3.25937 3.25937 -131.694 -3.25937 0 0 902133. 3121.57 0.17 0.04 0.0162294 0.0143963 84 31 92 32 32 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 4.51 0.03 6912 1 0.02 -1 -1 30040 -1 -1 19 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65432 30 32 299 247 1 152 81 17 17 289 -1 unnamed_device 0.32 620 0.10 0.00 2.6426 -91.474 -2.6426 2.6426 0.48 0.000284495 0.000248593 0.0457137 0.0395833 38 2159 24 6.95648e+06 275038 678818. 2348.85 2.25 0.116196 0.0993407 1732 18 1215 1765 146910 31981 3.25747 3.25747 -119.343 -3.25747 0 0 902133. 3121.57 0.17 0.04 0.0125103 0.0110786 65 29 60 30 30 30
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 6.31 0.02 7316 1 0.02 -1 -1 30600 -1 -1 31 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 67148 32 32 532 414 1 225 95 17 17 289 -1 unnamed_device 1.34 960 0.17 0.00 3.77644 -134.334 -3.77644 3.77644 0.49 0.000432635 0.00038218 0.0689793 0.0598244 46 3136 31 6.95648e+06 448746 828058. 2865.25 2.87 0.177277 0.152611 2336 23 2604 3967 318312 68897 5.29931 5.29931 -179.585 -5.29931 0 0 1.01997e+06 3529.29 0.22 0.07 0.0228726 0.0201995 103 109 32 32 128 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 5.11 0.03 7124 1 0.02 -1 -1 30028 -1 -1 28 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66384 32 32 377 289 1 187 92 17 17 289 -1 unnamed_device 0.79 797 0.12 0.00 3.15569 -113.6 -3.15569 3.15569 0.48 0.000416285 0.000350824 0.0538151 0.0465394 40 2321 48 6.95648e+06 405319 706193. 2443.58 2.14 0.149051 0.128511 1987 25 2197 2967 310676 80793 4.21056 4.21056 -149.697 -4.21056 0 0 926341. 3205.33 0.26 0.11 0.0348635 0.0310186 86 31 96 32 32 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 3.95 0.02 6996 1 0.01 -1 -1 30080 -1 -1 24 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65196 32 32 284 226 1 158 88 17 17 289 -1 unnamed_device 0.30 598 0.10 0.00 2.50195 -93.8489 -2.50195 2.50195 0.48 0.00028365 0.000247348 0.0421073 0.0358767 50 1947 46 6.95648e+06 347416 902133. 3121.57 1.70 0.116562 0.0996258 1510 20 1443 2383 233772 63436 3.07902 3.07902 -117.024 -3.07902 0 0 1.08113e+06 3740.92 0.21 0.05 0.0132885 0.011704 70 -1 96 32 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 4.74 0.03 7188 1 0.02 -1 -1 30468 -1 -1 31 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66636 32 32 439 321 1 225 95 17 17 289 -1 unnamed_device 0.45 945 0.14 0.00 3.77644 -132.687 -3.77644 3.77644 0.48 0.000397284 0.000350948 0.0597337 0.052105 54 3021 37 6.95648e+06 448746 949917. 3286.91 2.21 0.160358 0.138999 2071 28 2830 4403 370642 75474 5.05671 5.05671 -170.891 -5.05671 0 0 1.17392e+06 4061.99 0.22 0.08 0.0235536 0.0207506 105 26 128 32 32 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 4.28 0.03 6832 1 0.00 -1 -1 30016 -1 -1 10 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65188 32 32 284 226 1 156 74 17 17 289 -1 unnamed_device 0.44 719 0.08 0.00 2.43165 -94.5468 -2.43165 2.43165 0.49 0.00029504 0.000259973 0.0340771 0.0293974 38 2085 50 6.95648e+06 144757 678818. 2348.85 2.02 0.114684 0.0986754 1788 25 1653 2242 222909 46997 3.11682 3.11682 -126.82 -3.11682 0 0 902133. 3121.57 0.17 0.05 0.0156038 0.0137523 62 -1 96 32 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 4.30 0.02 7032 1 0.02 -1 -1 30164 -1 -1 21 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65652 30 32 299 247 1 151 83 17 17 289 -1 unnamed_device 0.65 747 0.12 0.00 2.6756 -97.6452 -2.6756 2.6756 0.49 0.000447949 0.00038965 0.0479418 0.0414461 38 2100 23 6.95648e+06 303989 678818. 2348.85 1.75 0.117294 0.100577 1860 20 1252 1807 180928 36240 3.07907 3.07907 -120.367 -3.07907 0 0 902133. 3121.57 0.17 0.04 0.0129801 0.0114153 65 29 60 30 30 30
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 4.47 0.02 7148 1 0.01 -1 -1 30204 -1 -1 20 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66216 29 32 397 323 1 174 81 17 17 289 -1 unnamed_device 1.03 661 0.12 0.00 2.81496 -88.2209 -2.81496 2.81496 0.49 0.000348008 0.000305972 0.0555273 0.0481068 52 2189 36 6.95648e+06 289514 926341. 3205.33 1.34 0.15648 0.13536 1552 20 1444 2303 158364 38649 3.34357 3.34357 -113.459 -3.34357 0 0 1.14541e+06 3963.36 0.22 0.04 0.0161692 0.0142468 77 81 29 29 85 29
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 4.49 0.02 7108 1 0.02 -1 -1 30284 -1 -1 13 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65824 32 32 408 320 1 186 77 17 17 289 -1 unnamed_device 0.65 728 0.11 0.00 3.03039 -111.62 -3.03039 3.03039 0.49 0.000370817 0.000326373 0.0553538 0.0485427 44 2671 48 6.95648e+06 188184 787024. 2723.27 1.87 0.162913 0.141172 1830 21 1923 2586 202412 45605 4.19956 4.19956 -152.792 -4.19956 0 0 997811. 3452.63 0.20 0.06 0.0196744 0.0175323 77 53 64 32 64 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 5.62 0.02 7208 1 0.02 -1 -1 30212 -1 -1 25 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66184 32 32 408 320 1 190 89 17 17 289 -1 unnamed_device 1.14 807 0.14 0.00 3.04069 -109.833 -3.04069 3.04069 0.50 0.000401279 0.000353947 0.06176 0.0532113 44 2810 31 6.95648e+06 361892 787024. 2723.27 2.37 0.168176 0.14499 2082 24 2132 3370 289478 61551 4.09626 4.09626 -148.465 -4.09626 0 0 997811. 3452.63 0.19 0.06 0.0192516 0.0170194 85 55 64 32 64 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 4.30 0.03 7048 1 0.02 -1 -1 30192 -1 -1 24 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66100 32 32 346 288 1 155 88 17 17 289 -1 unnamed_device 0.80 898 0.09 0.00 2.43165 -99.1749 -2.43165 2.43165 0.48 0.000317887 0.000267563 0.0365362 0.0308333 40 2259 27 6.95648e+06 347416 706193. 2443.58 1.61 0.109627 0.0933021 2097 23 1542 2377 283904 54483 3.11382 3.11382 -129.098 -3.11382 0 0 926341. 3205.33 0.18 0.06 0.0160024 0.0139323 69 55 32 32 64 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 4.45 0.03 7016 1 0.01 -1 -1 30184 -1 -1 10 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65736 31 32 355 304 1 147 73 17 17 289 -1 unnamed_device 1.08 674 0.10 0.00 2.80096 -92.7557 -2.80096 2.80096 0.48 0.000310733 0.000272469 0.0494989 0.0428864 38 2374 29 6.95648e+06 144757 678818. 2348.85 1.50 0.124461 0.106913 1801 19 1249 1953 170841 36342 3.44397 3.44397 -126.822 -3.44397 0 0 902133. 3121.57 0.17 0.04 0.0140904 0.0124194 59 82 0 0 89 31
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 4.84 0.03 7228 1 0.01 -1 -1 30300 -1 -1 22 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65988 30 32 377 300 1 178 84 17 17 289 -1 unnamed_device 0.72 953 0.11 0.00 2.6866 -99.9837 -2.6866 2.6866 0.48 0.000343682 0.000302763 0.0490467 0.0427248 38 2524 34 6.95648e+06 318465 678818. 2348.85 2.19 0.138801 0.119995 2093 23 1547 2192 184773 37020 3.17617 3.17617 -124.882 -3.17617 0 0 902133. 3121.57 0.17 0.05 0.0177673 0.0157055 79 52 60 30 57 30
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 4.49 0.03 7244 1 0.01 -1 -1 30168 -1 -1 16 28 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66212 28 32 337 265 1 172 76 17 17 289 -1 unnamed_device 0.76 681 0.11 0.00 3.68925 -108.465 -3.68925 3.68925 0.47 0.000306701 0.000267371 0.0526504 0.0454515 40 2456 26 6.95648e+06 231611 706193. 2443.58 1.84 0.12636 0.108191 1843 23 1797 2685 251259 54520 4.00506 4.00506 -135.146 -4.00506 0 0 926341. 3205.33 0.18 0.05 0.0162625 0.0142775 74 20 84 28 28 28
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 4.26 0.02 6956 1 0.02 -1 -1 30028 -1 -1 12 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65468 30 32 328 276 1 151 74 17 17 289 -1 unnamed_device 0.65 680 0.10 0.00 2.6566 -95.0022 -2.6566 2.6566 0.49 0.000299579 0.000262989 0.0464325 0.040361 34 2395 35 6.95648e+06 173708 618332. 2139.56 1.73 0.124823 0.106711 1865 26 1570 2173 259689 67271 3.12302 3.12302 -125.24 -3.12302 0 0 787024. 2723.27 0.16 0.06 0.0171689 0.0150038 61 58 30 30 60 30
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 5.57 0.02 7100 1 0.01 -1 -1 30036 -1 -1 10 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65860 32 32 362 309 1 152 74 17 17 289 -1 unnamed_device 0.92 691 0.10 0.00 2.5753 -90.7135 -2.5753 2.5753 0.48 0.000313281 0.000275312 0.0462322 0.0401847 34 2751 44 6.95648e+06 144757 618332. 2139.56 2.79 0.13636 0.116452 1997 20 1315 2082 200731 42405 3.06182 3.06182 -121.259 -3.06182 0 0 787024. 2723.27 0.16 0.05 0.0149559 0.0130783 60 88 0 0 91 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 3.75 0.03 7020 1 0.02 -1 -1 30052 -1 -1 25 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65980 31 32 337 253 1 188 88 17 17 289 -1 unnamed_device 0.15 1114 0.14 0.00 3.25235 -120.512 -3.25235 3.25235 0.49 0.000378231 0.000332954 0.0579767 0.0505136 46 2730 26 6.95648e+06 361892 828058. 2865.25 1.60 0.133554 0.115462 2255 25 2119 3240 297783 55724 4.03512 4.03512 -151.116 -4.03512 0 0 1.01997e+06 3529.29 0.19 0.06 0.0181608 0.016001 86 -1 124 31 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 5.86 0.03 7028 1 0.02 -1 -1 30320 -1 -1 27 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66028 32 32 408 320 1 189 91 17 17 289 -1 unnamed_device 0.88 808 0.13 0.00 3.12269 -112.746 -3.12269 3.12269 0.48 0.000359363 0.000314354 0.0560704 0.0481329 48 2845 44 6.95648e+06 390843 865456. 2994.66 2.95 0.159279 0.136162 2249 25 2060 3371 358845 77055 4.58786 4.58786 -157.775 -4.58786 0 0 1.05005e+06 3633.38 0.20 0.07 0.0199475 0.0174276 86 57 64 32 64 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 5.09 0.02 7128 1 0.01 -1 -1 30180 -1 -1 26 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66004 32 32 408 320 1 187 90 17 17 289 -1 unnamed_device 1.09 860 0.13 0.00 3.18689 -116.032 -3.18689 3.18689 0.48 0.000371202 0.000328524 0.056723 0.0493735 48 2601 46 6.95648e+06 376368 865456. 2994.66 1.99 0.157388 0.136249 2180 21 1938 3113 341646 72791 4.11526 4.11526 -150.446 -4.11526 0 0 1.05005e+06 3633.38 0.20 0.07 0.0178618 0.0158222 85 62 64 32 64 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 4.82 0.03 7220 1 0.02 -1 -1 30100 -1 -1 27 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66348 32 32 400 316 1 188 91 17 17 289 -1 unnamed_device 0.68 1035 0.13 0.00 3.23634 -116.173 -3.23634 3.23634 0.54 0.00036551 0.000319042 0.0547465 0.0473765 44 3022 23 6.95648e+06 390843 787024. 2723.27 2.05 0.139767 0.120034 2437 28 2092 3339 361224 83516 3.82802 3.82802 -147.445 -3.82802 0 0 997811. 3452.63 0.19 0.07 0.0214116 0.0188899 86 62 60 30 64 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 3.77 0.03 7072 1 0.02 -1 -1 30092 -1 -1 12 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65048 30 32 299 247 1 150 74 17 17 289 -1 unnamed_device 0.60 677 0.09 0.00 2.6646 -93.7359 -2.6646 2.6646 0.47 0.000289321 0.000246816 0.0429943 0.0372686 38 2020 20 6.95648e+06 173708 678818. 2348.85 1.31 0.105435 0.0906491 1834 18 1276 1929 176358 35907 3.12297 3.12297 -120.338 -3.12297 0 0 902133. 3121.57 0.17 0.04 0.013125 0.0116037 62 29 60 30 30 30
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 4.16 0.02 7156 1 0.02 -1 -1 30196 -1 -1 15 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66248 30 32 386 306 1 183 77 17 17 289 -1 unnamed_device 0.62 755 0.12 0.00 3.18504 -108.769 -3.18504 3.18504 0.51 0.000353435 0.000312694 0.0564779 0.0495078 38 2437 33 6.95648e+06 217135 678818. 2348.85 1.58 0.144489 0.125023 2033 21 1881 2614 246571 51247 4.07562 4.07562 -145.757 -4.07562 0 0 902133. 3121.57 0.17 0.05 0.0171387 0.0151464 78 58 60 30 60 30
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 8.68 0.03 7272 1 0.02 -1 -1 30524 -1 -1 31 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66252 32 32 470 382 1 190 95 17 17 289 -1 unnamed_device 1.02 983 0.14 0.00 3.17289 -120.721 -3.17289 3.17289 0.50 0.000439253 0.000369077 0.0538239 0.0463127 38 3139 47 6.95648e+06 448746 678818. 2348.85 5.45 0.163406 0.139227 2344 27 2238 3588 393206 91885 4.18676 4.18676 -157.687 -4.18676 0 0 902133. 3121.57 0.22 0.08 0.0217997 0.019022 88 106 0 0 128 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 4.28 0.02 7144 1 0.01 -1 -1 30300 -1 -1 22 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65972 31 32 427 343 1 189 85 17 17 289 -1 unnamed_device 0.56 906 0.12 0.00 3.5394 -120.022 -3.5394 3.5394 0.50 0.000376399 0.000332288 0.0558448 0.0486689 40 2690 23 6.95648e+06 318465 706193. 2443.58 1.73 0.139645 0.12091 2448 21 1865 2865 311720 61895 4.13846 4.13846 -154.911 -4.13846 0 0 926341. 3205.33 0.18 0.06 0.0180754 0.0159418 84 79 31 31 93 31
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 5.71 0.02 7152 1 0.01 -1 -1 30292 -1 -1 18 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65980 30 32 407 331 1 173 80 17 17 289 -1 unnamed_device 1.21 774 0.11 0.00 2.82586 -95.2175 -2.82586 2.82586 0.48 0.000356602 0.000314028 0.0559072 0.048775 38 2649 48 6.95648e+06 260562 678818. 2348.85 2.54 0.156566 0.13476 2084 24 1663 2529 213755 45743 3.42677 3.42677 -125.644 -3.42677 0 0 902133. 3121.57 0.17 0.05 0.0189319 0.0167091 75 83 26 26 90 30
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 4.57 0.02 7152 1 0.02 -1 -1 30168 -1 -1 13 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66380 32 32 408 320 1 193 77 17 17 289 -1 unnamed_device 1.16 961 0.13 0.00 3.03659 -114.263 -3.03659 3.03659 0.49 0.000441696 0.000383368 0.0614803 0.0539984 48 2892 23 6.95648e+06 188184 865456. 2994.66 1.39 0.144353 0.125328 2624 21 2096 3380 372584 71533 4.09446 4.09446 -153.48 -4.09446 0 0 1.05005e+06 3633.38 0.20 0.07 0.0182458 0.0161386 81 58 64 32 64 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 5.15 0.03 7420 1 0.01 -1 -1 30100 -1 -1 22 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66064 29 32 391 320 1 171 83 17 17 289 -1 unnamed_device 0.77 777 0.12 0.00 2.6096 -88.5727 -2.6096 2.6096 0.49 0.000350394 0.000308354 0.0576983 0.0499432 36 2431 29 6.95648e+06 318465 648988. 2245.63 2.48 0.141451 0.121536 1898 23 1772 2605 209881 44553 3.51127 3.51127 -119.465 -3.51127 0 0 828058. 2865.25 0.16 0.05 0.0178673 0.015776 77 81 26 26 85 29
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 4.61 0.02 6900 1 0.01 -1 -1 29908 -1 -1 10 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65136 32 32 284 226 1 156 74 17 17 289 -1 unnamed_device 0.95 574 0.09 0.00 2.43785 -92.0055 -2.43785 2.43785 0.51 0.00028075 0.000245259 0.0432115 0.0375858 52 1813 44 6.95648e+06 144757 926341. 3205.33 1.56 0.118007 0.101973 1331 22 1357 2017 150598 36490 3.01352 3.01352 -115.257 -3.01352 0 0 1.14541e+06 3963.36 0.22 0.04 0.0142916 0.0126307 62 -1 96 32 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 6.50 0.03 7224 1 0.02 -1 -1 30068 -1 -1 24 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66436 32 32 408 320 1 187 88 17 17 289 -1 unnamed_device 2.43 983 0.13 0.00 3.14769 -120.512 -3.14769 3.14769 0.48 0.000368014 0.000323688 0.0578078 0.0501991 46 2741 24 6.95648e+06 347416 828058. 2865.25 2.09 0.145484 0.125763 2186 24 2028 3133 278168 54569 3.76256 3.76256 -147.972 -3.76256 0 0 1.01997e+06 3529.29 0.19 0.06 0.0193785 0.0171334 84 62 64 32 64 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 3.80 0.02 7156 1 0.01 -1 -1 30040 -1 -1 13 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65916 32 32 408 320 1 193 77 17 17 289 -1 unnamed_device 0.44 977 0.11 0.00 3.16669 -123.387 -3.16669 3.16669 0.48 0.000372687 0.000329788 0.0541425 0.0476467 44 2700 23 6.95648e+06 188184 787024. 2723.27 1.40 0.136758 0.119098 2194 23 2162 2960 257370 50690 3.99116 3.99116 -158.043 -3.99116 0 0 997811. 3452.63 0.19 0.06 0.0200395 0.0178758 81 62 64 32 64 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 4.51 0.02 6848 1 0.02 -1 -1 30124 -1 -1 11 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65028 32 32 316 268 1 152 75 17 17 289 -1 unnamed_device 0.78 703 0.09 0.00 2.5191 -89.8034 -2.5191 2.5191 0.48 0.000288557 0.000251383 0.0412711 0.0356372 38 2356 23 6.95648e+06 159232 678818. 2348.85 1.87 0.112591 0.0960991 1801 21 1254 1718 169175 35340 3.07897 3.07897 -118.934 -3.07897 0 0 902133. 3121.57 0.17 0.04 0.013765 0.0120477 60 47 32 32 54 27
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 4.74 0.02 6888 1 0.00 -1 -1 29960 -1 -1 11 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65040 31 32 277 222 1 154 74 17 17 289 -1 unnamed_device 0.24 847 0.08 0.00 2.6756 -102.196 -2.6756 2.6756 0.66 0.000275337 0.000241096 0.0382391 0.033281 36 2283 44 6.95648e+06 159232 648988. 2245.63 2.53 0.118037 0.101315 1937 20 1430 2101 199629 40889 3.06697 3.06697 -129.295 -3.06697 0 0 828058. 2865.25 0.16 0.04 0.0130375 0.0115039 63 -1 93 31 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 4.77 0.03 7028 1 0.02 -1 -1 30048 -1 -1 19 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66052 32 32 382 304 1 180 83 17 17 289 -1 unnamed_device 0.89 671 0.11 0.00 3.07684 -102.085 -3.07684 3.07684 0.64 0.000344081 0.000301351 0.0522382 0.0449975 48 2327 35 6.95648e+06 275038 865456. 2994.66 1.72 0.137309 0.118028 1701 23 1768 2402 191603 47456 3.72046 3.72046 -134.959 -3.72046 0 0 1.05005e+06 3633.38 0.21 0.05 0.0177869 0.0156884 78 56 60 32 58 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 5.72 0.02 7108 1 0.00 -1 -1 30192 -1 -1 19 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66072 32 32 407 331 1 182 83 17 17 289 -1 unnamed_device 1.58 824 0.14 0.00 3.4357 -111.875 -3.4357 3.4357 0.48 0.000563867 0.000495712 0.0613953 0.0534608 40 2883 41 6.95648e+06 275038 706193. 2443.58 2.14 0.158544 0.13627 2289 22 1983 3036 313378 70617 4.24992 4.24992 -153.414 -4.24992 0 0 926341. 3205.33 0.18 0.06 0.0179659 0.0157596 79 81 28 28 88 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 4.00 0.03 7156 1 0.01 -1 -1 30220 -1 -1 27 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66452 32 32 400 286 1 218 91 17 17 289 -1 unnamed_device 0.39 949 0.15 0.00 3.73059 -129.81 -3.73059 3.73059 0.48 0.000373841 0.000330851 0.0609066 0.0528373 48 2847 31 6.95648e+06 390843 865456. 2994.66 1.54 0.151255 0.131057 2423 23 2304 3486 366899 73815 4.76211 4.76211 -167.95 -4.76211 0 0 1.05005e+06 3633.38 0.20 0.07 0.0202525 0.017949 100 -1 156 32 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 4.37 0.03 7132 1 0.02 -1 -1 30424 -1 -1 18 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66204 30 32 374 298 1 176 80 17 17 289 -1 unnamed_device 0.81 653 0.11 0.00 2.89186 -94.8342 -2.89186 2.89186 0.48 0.000335078 0.000295501 0.0558015 0.0486393 48 1994 26 6.95648e+06 260562 865456. 2994.66 1.58 0.136272 0.117491 1607 22 1744 2526 185987 46956 3.64437 3.64437 -120.215 -3.64437 0 0 1.05005e+06 3633.38 0.21 0.05 0.0167895 0.0147704 77 47 60 30 56 30
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 3.63 0.01 6912 1 0.01 -1 -1 30200 -1 -1 14 27 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65092 27 32 275 232 1 137 73 17 17 289 -1 unnamed_device 0.62 476 0.08 0.00 2.90721 -82.2638 -2.90721 2.90721 0.50 0.000447872 0.000410753 0.0404689 0.0351396 44 1578 33 6.95648e+06 202660 787024. 2723.27 1.05 0.102412 0.0880656 1174 30 1205 1423 114572 27859 2.95852 2.95852 -102.155 -2.95852 0 0 997811. 3452.63 0.19 0.04 0.016766 0.0146456 57 26 54 27 27 27
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 5.01 0.02 7316 1 0.01 -1 -1 30508 -1 -1 29 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66884 32 32 494 379 1 222 93 17 17 289 -1 unnamed_device 0.56 1231 0.16 0.00 3.62995 -127.341 -3.62995 3.62995 0.48 0.000418004 0.000369609 0.0656488 0.057249 46 3476 31 6.95648e+06 419795 828058. 2865.25 2.32 0.170774 0.147525 2715 25 2499 4230 354132 68270 4.20581 4.20581 -156.824 -4.20581 0 0 1.01997e+06 3529.29 0.19 0.07 0.0237267 0.0208534 102 85 62 31 95 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 7.80 0.02 7300 1 0.01 -1 -1 30476 -1 -1 14 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66492 31 32 457 373 1 186 77 17 17 289 -1 unnamed_device 2.76 999 0.11 0.00 3.82604 -130.908 -3.82604 3.82604 0.49 0.000391232 0.000346085 0.058268 0.0512113 38 2822 44 6.95648e+06 202660 678818. 2348.85 3.09 0.163572 0.141275 2337 25 1742 2621 267202 51113 4.77761 4.77761 -167.305 -4.77761 0 0 902133. 3121.57 0.17 0.06 0.021652 0.0188055 79 105 0 0 124 31
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 6.33 0.03 6980 1 0.01 -1 -1 30040 -1 -1 10 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65400 32 32 356 305 1 147 74 17 17 289 -1 unnamed_device 2.20 571 0.09 0.00 2.6408 -89.3541 -2.6408 2.6408 0.49 0.000317193 0.000277534 0.045287 0.039454 38 2331 36 6.95648e+06 144757 678818. 2348.85 2.18 0.126721 0.108812 1626 21 1186 1805 136838 32017 3.12437 3.12437 -126.128 -3.12437 0 0 902133. 3121.57 0.17 0.04 0.0153191 0.0135184 58 86 0 0 89 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 4.65 0.03 7128 1 0.01 -1 -1 30024 -1 -1 21 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66064 32 32 365 283 1 188 85 17 17 289 -1 unnamed_device 0.42 777 0.11 0.00 3.4797 -115.15 -3.4797 3.4797 0.48 0.000332478 0.000291135 0.0487456 0.0423049 46 2713 29 6.95648e+06 303989 828058. 2865.25 2.16 0.129778 0.111749 1989 24 1872 2756 216454 50160 3.97096 3.97096 -145.211 -3.97096 0 0 1.01997e+06 3529.29 0.20 0.06 0.0184325 0.0162274 82 31 90 30 32 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 4.78 0.02 7400 1 0.01 -1 -1 30336 -1 -1 23 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66524 31 32 445 338 1 210 86 17 17 289 -1 unnamed_device 0.73 860 0.13 0.00 3.4515 -114.294 -3.4515 3.4515 0.49 0.000402411 0.000346008 0.0619923 0.0540114 46 2600 24 6.95648e+06 332941 828058. 2865.25 1.95 0.155064 0.133662 2049 23 2040 2767 203588 46105 4.19962 4.19962 -146.411 -4.19962 0 0 1.01997e+06 3529.29 0.19 0.05 0.0209666 0.0186328 95 50 87 31 62 31
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 5.09 0.03 7076 1 0.01 -1 -1 30136 -1 -1 20 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66172 30 32 376 300 1 178 82 17 17 289 -1 unnamed_device 0.78 989 0.11 0.00 2.80386 -95.7313 -2.80386 2.80386 0.50 0.000337422 0.000297007 0.0497871 0.043298 38 2743 25 6.95648e+06 289514 678818. 2348.85 2.39 0.13595 0.117257 2300 21 1602 2540 215221 43794 3.42683 3.42683 -124.575 -3.42683 0 0 902133. 3121.57 0.17 0.05 0.0162735 0.0143984 78 50 58 30 58 30
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 4.83 0.02 7036 1 0.01 -1 -1 30188 -1 -1 34 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66188 32 32 408 320 1 193 98 17 17 289 -1 unnamed_device 0.34 1101 0.14 0.00 3.14469 -121.798 -3.14469 3.14469 0.48 0.000364861 0.000317234 0.0567116 0.0484507 40 2836 24 6.95648e+06 492173 706193. 2443.58 2.50 0.140835 0.120338 2495 21 2035 2962 331839 63091 4.22776 4.22776 -160.145 -4.22776 0 0 926341. 3205.33 0.18 0.06 0.0176673 0.0155177 91 61 64 32 64 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 4.47 0.02 7160 1 0.01 -1 -1 30208 -1 -1 32 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66080 32 32 406 319 1 192 96 17 17 289 -1 unnamed_device 0.36 977 0.12 0.00 2.5393 -100.277 -2.5393 2.5393 0.49 0.000368318 0.000324908 0.048585 0.0418647 38 2515 44 6.95648e+06 463222 678818. 2348.85 2.17 0.146037 0.125282 2175 19 1593 2186 191083 39731 3.12782 3.12782 -130.156 -3.12782 0 0 902133. 3121.57 0.17 0.05 0.0161958 0.014307 91 61 63 32 64 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 6.51 0.03 7028 1 0.02 -1 -1 30112 -1 -1 13 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65268 29 32 291 242 1 136 74 17 17 289 -1 unnamed_device 3.30 520 0.09 0.00 2.4983 -82.6856 -2.4983 2.4983 0.48 0.000282765 0.000246295 0.0445543 0.0387501 36 1676 31 6.95648e+06 188184 648988. 2245.63 1.36 0.111774 0.0960041 1263 23 1133 1448 119018 26217 3.18712 3.18712 -111.788 -3.18712 0 0 828058. 2865.25 0.16 0.03 0.014578 0.012815 57 28 58 29 29 29
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 3.99 0.03 6956 1 0.01 -1 -1 30120 -1 -1 10 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65268 32 32 335 291 1 148 74 17 17 289 -1 unnamed_device 0.62 852 0.08 0.00 2.47995 -94.2913 -2.47995 2.47995 0.49 0.000293732 0.000256224 0.0404569 0.0350644 36 2123 37 6.95648e+06 144757 648988. 2245.63 1.48 0.12648 0.108772 1837 23 1264 1601 165383 32148 3.05562 3.05562 -121.005 -3.05562 0 0 828058. 2865.25 0.16 0.04 0.0154374 0.0135711 58 79 0 0 82 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 4.06 0.02 7056 1 0.01 -1 -1 30084 -1 -1 29 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66204 31 32 367 283 1 188 92 17 17 289 -1 unnamed_device 0.30 788 0.13 0.00 3.3995 -115.545 -3.3995 3.3995 0.49 0.000342977 0.000299823 0.0533547 0.0461943 46 2288 19 6.95648e+06 419795 828058. 2865.25 1.78 0.133301 0.115056 1842 21 1854 2594 215592 45061 4.09152 4.09152 -145.209 -4.09152 0 0 1.01997e+06 3529.29 0.19 0.05 0.0167565 0.0148352 88 29 93 31 31 31
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 6.01 0.02 7084 1 0.00 -1 -1 30272 -1 -1 14 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65132 29 32 301 258 1 144 75 17 17 289 -1 unnamed_device 0.83 582 0.09 0.00 2.76175 -84.6886 -2.76175 2.76175 0.48 0.000270234 0.000233811 0.0402958 0.034726 36 2238 47 6.95648e+06 202660 648988. 2245.63 3.17 0.115353 0.0980692 1569 21 1059 1469 133706 31418 3.00067 3.00067 -105.793 -3.00067 0 0 828058. 2865.25 0.24 0.06 0.0213451 0.0186487 59 48 29 29 52 26
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 3.99 0.01 6948 1 0.01 -1 -1 30124 -1 -1 10 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65160 32 32 315 257 1 154 74 17 17 289 -1 unnamed_device 0.82 623 0.09 0.00 2.43165 -93.3287 -2.43165 2.43165 0.48 0.000300496 0.000262278 0.0431184 0.0375529 44 1863 31 6.95648e+06 144757 787024. 2723.27 1.20 0.113305 0.0972955 1416 21 1357 1829 142965 32133 3.11692 3.11692 -117.76 -3.11692 0 0 997811. 3452.63 0.28 0.04 0.0143699 0.0126572 61 31 64 32 32 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 4.37 0.02 7176 1 0.02 -1 -1 30152 -1 -1 24 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66500 31 32 389 309 1 181 87 17 17 289 -1 unnamed_device 0.73 974 0.11 0.00 2.90906 -104.305 -2.90906 2.90906 0.49 0.000352267 0.000310285 0.0486572 0.0422688 38 2360 28 6.95648e+06 347416 678818. 2348.85 1.74 0.132415 0.113967 2053 19 1676 2172 193105 38935 3.45063 3.45063 -133.869 -3.45063 0 0 902133. 3121.57 0.17 0.04 0.0158998 0.0141527 82 60 58 31 62 31
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 6.02 0.03 7084 1 0.01 -1 -1 30084 -1 -1 11 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65088 31 32 310 264 1 143 74 17 17 289 -1 unnamed_device 1.89 710 0.09 0.00 2.63455 -87.4946 -2.63455 2.63455 0.48 0.000283151 0.000246816 0.0404922 0.0350325 36 2127 23 6.95648e+06 159232 648988. 2245.63 2.30 0.112704 0.096073 1780 20 1156 1706 179370 36149 3.03987 3.03987 -117.111 -3.03987 0 0 828058. 2865.25 0.16 0.04 0.0133926 0.0117557 57 49 31 31 53 31
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 4.47 0.03 7084 1 0.01 -1 -1 30164 -1 -1 19 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66440 32 32 384 308 1 176 83 17 17 289 -1 unnamed_device 1.08 945 0.10 0.00 2.5986 -94.7452 -2.5986 2.5986 0.48 0.000347433 0.000304843 0.042818 0.0369833 38 2435 35 6.95648e+06 275038 678818. 2348.85 1.56 0.127249 0.109411 2055 17 1266 1794 147659 30700 3.00387 3.00387 -119.088 -3.00387 0 0 902133. 3121.57 0.17 0.04 0.0144111 0.0128059 76 56 52 26 64 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 3.94 0.03 7156 1 0.01 -1 -1 30192 -1 -1 26 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66152 31 32 424 341 1 187 89 17 17 289 -1 unnamed_device 0.63 826 0.11 0.00 2.98426 -102.942 -2.98426 2.98426 0.50 0.000400522 0.00035568 0.0476275 0.0414513 40 2191 24 6.95648e+06 376368 706193. 2443.58 1.29 0.134148 0.115948 1920 22 1812 2411 227936 46446 3.31727 3.31727 -127.026 -3.31727 0 0 926341. 3205.33 0.18 0.05 0.0184315 0.0162298 86 88 31 31 92 31
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 3.55 0.03 6844 1 0.01 -1 -1 30048 -1 -1 10 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65148 32 32 334 280 1 154 74 17 17 289 -1 unnamed_device 0.65 656 0.09 0.00 2.4011 -87.5031 -2.4011 2.4011 0.51 0.000303543 0.000265616 0.0445018 0.0384905 40 2017 19 6.95648e+06 144757 706193. 2443.58 1.02 0.10892 0.0936077 1734 19 1207 1819 162844 34734 3.12012 3.12012 -117.397 -3.12012 0 0 926341. 3205.33 0.18 0.04 0.0135814 0.0119155 61 54 32 32 60 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 4.68 0.03 7016 1 0.02 -1 -1 29980 -1 -1 10 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65628 32 32 340 284 1 158 74 17 17 289 -1 unnamed_device 0.72 572 0.13 0.00 2.5503 -94.1575 -2.5503 2.5503 0.61 0.000307189 0.000266093 0.0613346 0.0531112 48 2030 33 6.95648e+06 144757 865456. 2994.66 1.83 0.147509 0.126685 1681 23 1466 2211 213732 52376 3.26542 3.26542 -122.934 -3.26542 0 0 1.05005e+06 3633.38 0.21 0.05 0.0155666 0.0136269 63 60 32 32 62 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 4.67 0.03 7208 1 0.02 -1 -1 30548 -1 -1 29 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66444 32 32 408 320 1 190 93 17 17 289 -1 unnamed_device 0.67 919 0.13 0.00 3.07869 -114.032 -3.07869 3.07869 0.48 0.000366559 0.000311628 0.0528821 0.0455047 40 2453 35 6.95648e+06 419795 706193. 2443.58 1.93 0.147455 0.126408 2327 23 2185 3188 293576 59382 4.32486 4.32486 -164.336 -4.32486 0 0 926341. 3205.33 0.21 0.06 0.0180727 0.0158764 88 49 64 32 64 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 4.39 0.02 7092 1 0.01 -1 -1 30312 -1 -1 19 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66104 29 32 371 297 1 175 80 17 17 289 -1 unnamed_device 0.74 835 0.12 0.00 2.7306 -96.1749 -2.7306 2.7306 0.48 0.000331372 0.00029165 0.053263 0.0462569 38 2369 48 6.95648e+06 275038 678818. 2348.85 1.72 0.141912 0.122062 1875 22 1450 1990 164316 35169 3.24827 3.24827 -120.987 -3.24827 0 0 902133. 3121.57 0.17 0.04 0.0183121 0.0162557 77 54 56 29 58 29
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 4.88 0.03 7080 1 0.02 -1 -1 30452 -1 -1 29 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66764 32 32 470 382 1 192 93 17 17 289 -1 unnamed_device 1.08 959 0.13 0.00 3.10069 -116.875 -3.10069 3.10069 0.48 0.000406711 0.000342886 0.0597192 0.0513757 40 2696 24 6.95648e+06 419795 706193. 2443.58 1.82 0.151915 0.130825 2410 26 2325 3435 387019 74922 4.28086 4.28086 -160.157 -4.28086 0 0 926341. 3205.33 0.18 0.07 0.0219215 0.0192168 89 117 0 0 128 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 4.41 0.03 7008 1 0.01 -1 -1 30028 -1 -1 11 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64852 31 32 261 214 1 144 74 17 17 289 -1 unnamed_device 1.25 664 0.09 0.00 2.4703 -82.5519 -2.4703 2.4703 0.48 0.000266049 0.000231034 0.0410503 0.0353304 46 1865 25 6.95648e+06 159232 828058. 2865.25 1.29 0.100664 0.0864502 1472 19 1084 1589 128496 28184 3.15132 3.15132 -110.857 -3.15132 0 0 1.01997e+06 3529.29 0.19 0.03 0.0121729 0.010795 58 -1 85 31 0 0
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 4.94 0.02 7056 1 0.02 -1 -1 30044 -1 -1 23 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66324 32 32 419 339 1 182 87 17 17 289 -1 unnamed_device 1.52 918 0.12 0.00 3.25714 -110.972 -3.25714 3.25714 0.53 0.000368223 0.000323622 0.0540439 0.046421 40 2474 26 6.95648e+06 332941 706193. 2443.58 1.42 0.138609 0.119083 2187 21 1878 2601 244057 49845 4.31206 4.31206 -151.959 -4.31206 0 0 926341. 3205.33 0.18 0.05 0.0178886 0.0158444 82 89 28 28 92 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 6.11 0.03 6984 1 0.01 -1 -1 29948 -1 -1 10 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65844 32 32 377 319 1 154 74 17 17 289 -1 unnamed_device 2.66 736 0.09 0.00 2.45985 -95.334 -2.45985 2.45985 0.49 0.000508678 0.000464672 0.046884 0.0410886 38 2070 39 6.95648e+06 144757 678818. 2348.85 1.59 0.132161 0.114442 1741 20 1417 1964 201256 40255 3.37542 3.37542 -134.494 -3.37542 0 0 902133. 3121.57 0.17 0.05 0.0154149 0.0136183 61 93 0 0 96 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 4.32 0.02 7352 1 0.02 -1 -1 30148 -1 -1 24 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65904 32 32 402 317 1 188 88 17 17 289 -1 unnamed_device 0.74 792 0.12 0.00 2.5393 -95.0787 -2.5393 2.5393 0.50 0.000356011 0.000307219 0.0537467 0.0463883 48 2186 32 6.95648e+06 347416 865456. 2994.66 1.60 0.141492 0.122027 1738 20 1642 2451 212259 46385 3.12297 3.12297 -116.364 -3.12297 0 0 1.05005e+06 3633.38 0.20 0.05 0.0169391 0.0150026 84 59 61 32 64 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 6.40 0.02 7336 1 0.01 -1 -1 30492 -1 -1 33 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66576 32 32 501 383 1 222 97 17 17 289 -1 unnamed_device 0.88 1018 0.13 0.00 3.77644 -133.781 -3.77644 3.77644 0.48 0.000447006 0.000400107 0.0524363 0.0453151 40 3157 44 6.95648e+06 477698 706193. 2443.58 3.53 0.173292 0.148355 2796 23 2751 4094 431879 86672 4.97061 4.97061 -184.571 -4.97061 0 0 926341. 3205.33 0.18 0.08 0.0222323 0.0195021 104 81 64 32 96 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 3.38 0.02 6740 1 0.01 -1 -1 29904 -1 -1 10 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65108 30 32 249 232 1 117 72 17 17 289 -1 unnamed_device 0.48 635 0.07 0.00 1.83056 -69.615 -1.83056 1.83056 0.48 0.000237236 0.000205207 0.0343385 0.0294466 36 1438 21 6.95648e+06 144757 648988. 2245.63 1.12 0.0858751 0.0731345 1270 21 804 1000 92172 19874 2.32813 2.32813 -88.6372 -2.32813 0 0 828058. 2865.25 0.16 0.03 0.010899 0.00945115 45 51 0 0 53 30
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 4.72 0.03 6984 1 0.01 -1 -1 30004 -1 -1 12 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64840 30 32 299 247 1 142 74 17 17 289 -1 unnamed_device 1.46 518 0.09 0.00 2.68956 -87.8733 -2.68956 2.68956 0.49 0.000293142 0.000251422 0.0458281 0.0398726 36 2019 29 6.95648e+06 173708 648988. 2245.63 1.36 0.116614 0.0996786 1491 25 1266 1778 153019 35371 3.21712 3.21712 -118.613 -3.21712 0 0 828058. 2865.25 0.16 0.04 0.0155136 0.0136089 59 29 60 30 30 30
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 4.77 0.03 6928 1 0.02 -1 -1 29968 -1 -1 10 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65148 32 32 315 257 1 161 74 17 17 289 -1 unnamed_device 0.25 872 0.10 0.00 2.43165 -99.1233 -2.43165 2.43165 0.48 0.000323066 0.000284632 0.0447045 0.0388678 38 2647 30 6.95648e+06 144757 678818. 2348.85 2.62 0.120208 0.103032 2228 21 1789 3001 297739 56861 3.39372 3.39372 -131.473 -3.39372 0 0 902133. 3121.57 0.17 0.06 0.0146031 0.012863 65 31 64 32 32 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 3.15 0.03 6876 1 0.02 -1 -1 30140 -1 -1 16 25 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65128 25 32 259 222 1 132 73 17 17 289 -1 unnamed_device 0.39 642 0.09 0.00 2.5283 -79.1309 -2.5283 2.5283 0.49 0.000246441 0.000214929 0.0393591 0.0338775 36 1689 21 6.95648e+06 231611 648988. 2245.63 0.93 0.093322 0.079581 1497 21 1094 1483 145531 29161 3.19512 3.19512 -105.187 -3.19512 0 0 828058. 2865.25 0.17 0.03 0.0119824 0.0104465 56 19 50 25 25 25
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 5.60 0.03 7108 1 0.01 -1 -1 30284 -1 -1 13 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66084 32 32 433 347 1 192 77 17 17 289 -1 unnamed_device 0.64 942 0.12 0.00 3.17084 -112.804 -3.17084 3.17084 0.48 0.000382614 0.000339378 0.0585717 0.0515157 38 3117 27 6.95648e+06 188184 678818. 2348.85 3.04 0.149581 0.129482 2533 21 1895 3211 271390 54856 4.21166 4.21166 -152.608 -4.21166 0 0 902133. 3121.57 0.17 0.05 0.0182583 0.0161791 80 84 32 32 94 32
+ fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 4.42 0.03 7156 1 0.01 -1 -1 30096 -1 -1 29 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66448 31 32 423 341 1 185 92 17 17 289 -1 unnamed_device 0.58 837 0.12 0.00 2.97646 -101.299 -2.97646 2.97646 0.48 0.000379373 0.000332777 0.0570281 0.0495188 38 2377 38 6.95648e+06 419795 678818. 2348.85 1.95 0.153385 0.131993 1991 20 1651 2211 180362 37313 3.33157 3.33157 -128.016 -3.33157 0 0 902133. 3121.57 0.17 0.04 0.0171576 0.0151762 87 88 29 29 93 31
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 4.27 0.02 7052 1 0.02 -1 -1 30520 -1 -1 21 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 67204 32 32 439 351 1 287 85 17 17 289 -1 unnamed_device 0.50 1068 0.14 0.00 3.80164 -131.611 -3.80164 3.80164 0.48 0.000380818 0.000336168 0.0615399 0.0537112 48 3240 31 6.99608e+06 309029 865456. 2994.66 1.73 0.154646 0.133896 2499 35 3234 3827 417991 131220 4.78441 4.78441 -169.501 -4.78441 0 0 1.05005e+06 3633.38 0.20 0.10 0.0269733 0.0236685 129 80 32 32 96 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 4.85 0.02 7288 1 0.01 -1 -1 30332 -1 -1 20 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66420 30 32 412 333 1 259 82 17 17 289 -1 unnamed_device 1.14 1011 0.13 0.00 3.54252 -117.362 -3.54252 3.54252 0.48 0.000359425 0.000315835 0.0582227 0.050788 54 2801 43 6.99608e+06 294314 949917. 3286.91 1.69 0.152461 0.132279 2209 21 2404 3367 291173 61840 4.52529 4.52529 -146.785 -4.52529 0 0 1.17392e+06 4061.99 0.22 0.06 0.0176596 0.0156254 117 78 30 30 89 30
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 4.05 0.03 7208 1 0.01 -1 -1 30308 -1 -1 18 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66264 32 32 388 310 1 241 82 17 17 289 -1 unnamed_device 0.74 939 0.12 0.00 2.96629 -102.787 -2.96629 2.96629 0.49 0.000340283 0.000298802 0.0520973 0.0452905 50 2466 29 6.99608e+06 264882 902133. 3121.57 1.31 0.132018 0.113798 2007 22 1650 1953 161566 36126 3.81176 3.81176 -137.436 -3.81176 0 0 1.08113e+06 3740.92 0.22 0.07 0.0261865 0.0230433 106 50 54 32 64 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 4.20 0.02 7368 1 0.01 -1 -1 30296 -1 -1 18 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65696 29 32 347 271 1 201 79 17 17 289 -1 unnamed_device 0.71 789 0.11 0.00 3.3701 -106.751 -3.3701 3.3701 0.50 0.000325381 0.000285936 0.0525378 0.0457468 48 2454 41 6.99608e+06 264882 865456. 2994.66 1.43 0.137004 0.118183 1906 33 2350 3449 494241 174874 4.16961 4.16961 -138.822 -4.16961 0 0 1.05005e+06 3633.38 0.20 0.10 0.0218767 0.0191921 89 25 87 29 29 29
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 4.24 0.03 7048 1 0.01 -1 -1 30024 -1 -1 15 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66024 32 32 377 289 1 218 79 17 17 289 -1 unnamed_device 0.35 1063 0.12 0.00 3.56384 -131.607 -3.56384 3.56384 0.55 0.000368739 0.000326436 0.0547445 0.0478596 44 3819 35 6.99608e+06 220735 787024. 2723.27 1.84 0.142324 0.123156 2839 21 2349 3835 368943 73785 4.73115 4.73115 -174.036 -4.73115 0 0 997811. 3452.63 0.19 0.07 0.0172409 0.0152897 93 31 96 32 32 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 4.34 0.03 7348 1 0.01 -1 -1 30164 -1 -1 31 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66416 32 32 403 317 1 251 95 17 17 289 -1 unnamed_device 0.38 1069 0.15 0.00 3.01159 -107.68 -3.01159 3.01159 0.51 0.000366186 0.000323136 0.0588632 0.0508455 50 3224 49 6.99608e+06 456186 902133. 3121.57 1.80 0.162201 0.139548 2464 22 2049 3104 222902 51836 3.50431 3.50431 -133.219 -3.50431 0 0 1.08113e+06 3740.92 0.27 0.05 0.018828 0.0167038 117 61 63 32 63 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 4.46 0.02 6928 1 0.01 -1 -1 30128 -1 -1 16 27 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65144 27 32 275 232 1 158 75 17 17 289 -1 unnamed_device 1.27 661 0.11 0.00 2.67964 -85.0332 -2.67964 2.67964 0.48 0.000271698 0.000236887 0.0515641 0.0444777 36 1946 46 6.99608e+06 235451 648988. 2245.63 1.36 0.124021 0.106334 1684 20 1369 1940 188927 39209 3.54511 3.54511 -118.419 -3.54511 0 0 828058. 2865.25 0.16 0.04 0.0126003 0.0110753 70 26 54 27 27 27
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 3.81 0.03 7064 1 0.01 -1 -1 30032 -1 -1 17 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64916 31 32 319 244 1 178 80 17 17 289 -1 unnamed_device 0.41 1015 0.10 0.00 2.36575 -90.9114 -2.36575 2.36575 0.49 0.000303894 0.000266871 0.045132 0.0392083 40 2560 26 6.99608e+06 250167 706193. 2443.58 1.49 0.117612 0.101167 2234 22 1342 2099 212910 42313 2.84652 2.84652 -115.37 -2.84652 0 0 926341. 3205.33 0.18 0.05 0.0154981 0.0136188 77 -1 115 31 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 5.71 0.03 7240 1 0.01 -1 -1 30068 -1 -1 15 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65912 31 32 340 294 1 224 78 17 17 289 -1 unnamed_device 2.30 1112 0.11 0.00 2.62059 -101.452 -2.62059 2.62059 0.48 0.000304041 0.000264566 0.0464709 0.0401464 40 2681 41 6.99608e+06 220735 706193. 2443.58 1.54 0.125718 0.107539 2384 19 1720 2081 193223 39830 3.35381 3.35381 -131.314 -3.35381 0 0 926341. 3205.33 0.18 0.04 0.013785 0.012151 97 81 0 0 84 31
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 4.62 0.03 7020 1 0.02 -1 -1 30000 -1 -1 13 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65708 32 32 315 257 1 187 77 17 17 289 -1 unnamed_device 0.64 967 0.10 0.00 2.70344 -109.016 -2.70344 2.70344 0.58 0.000296929 0.000260464 0.0442645 0.0385671 38 2677 30 6.99608e+06 191304 678818. 2348.85 1.96 0.119015 0.102367 2234 22 1844 2323 203660 40689 3.47181 3.47181 -146.531 -3.47181 0 0 902133. 3121.57 0.17 0.05 0.0164587 0.0146335 79 31 64 32 32 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 4.86 0.01 6944 1 0.01 -1 -1 30116 -1 -1 15 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66004 30 32 328 276 1 199 77 17 17 289 -1 unnamed_device 1.41 1018 0.10 0.00 3.26623 -114.951 -3.26623 3.26623 0.48 0.000302744 0.000265572 0.0466079 0.0405466 44 2585 20 6.99608e+06 220735 787024. 2723.27 1.55 0.113326 0.097886 2131 23 1756 2388 199761 40353 4.0096 4.0096 -146.597 -4.0096 0 0 997811. 3452.63 0.19 0.05 0.0155775 0.0137088 88 58 30 30 60 30
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 4.07 0.03 7160 1 0.01 -1 -1 30320 -1 -1 14 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65744 32 32 332 281 1 211 78 17 17 289 -1 unnamed_device 0.62 939 0.10 0.00 2.5521 -96.9003 -2.5521 2.5521 0.49 0.000302995 0.000259664 0.0469244 0.0403881 40 2663 31 6.99608e+06 206020 706193. 2443.58 1.54 0.118668 0.101075 2209 21 1516 1632 178924 38476 3.42877 3.42877 -130.829 -3.42877 0 0 926341. 3205.33 0.18 0.04 0.0143739 0.0126175 90 57 25 25 64 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 5.04 0.03 7068 1 0.02 -1 -1 30092 -1 -1 16 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66028 32 32 387 306 1 231 80 17 17 289 -1 unnamed_device 0.75 1135 0.14 0.00 2.91629 -112.165 -2.91629 2.91629 0.49 0.000450073 0.000399541 0.0660582 0.0573764 40 3189 31 6.99608e+06 235451 706193. 2443.58 2.31 0.152016 0.131048 2701 18 1920 2612 266553 52233 3.57036 3.57036 -140.657 -3.57036 0 0 926341. 3205.33 0.18 0.05 0.0153229 0.0135833 101 55 64 32 57 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 4.32 0.02 7224 1 0.01 -1 -1 30128 -1 -1 18 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66448 32 32 408 320 1 254 82 17 17 289 -1 unnamed_device 0.70 1121 0.13 0.00 3.56204 -128.591 -3.56204 3.56204 0.48 0.000365655 0.000322887 0.057994 0.0507207 48 3104 28 6.99608e+06 264882 865456. 2994.66 1.60 0.145041 0.125992 2654 23 2745 3481 340417 67260 4.59375 4.59375 -174.262 -4.59375 0 0 1.05005e+06 3633.38 0.21 0.07 0.020862 0.0184139 111 60 64 32 64 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 5.32 0.02 6972 1 0.01 -1 -1 30204 -1 -1 13 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64704 29 32 276 232 1 159 74 17 17 289 -1 unnamed_device 1.86 730 0.10 0.00 2.42075 -83.976 -2.42075 2.42075 0.49 0.000267556 0.000234425 0.0436876 0.0378524 34 2121 32 6.99608e+06 191304 618332. 2139.56 1.60 0.112482 0.0960581 1809 18 1209 1650 143793 30452 3.26322 3.26322 -116.287 -3.26322 0 0 787024. 2723.27 0.16 0.04 0.0119756 0.0105155 67 21 58 29 24 24
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 5.34 0.03 7192 1 0.01 -1 -1 30088 -1 -1 16 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66244 32 32 402 316 1 244 80 17 17 289 -1 unnamed_device 1.66 1026 0.13 0.00 2.91309 -107.862 -2.91309 2.91309 0.48 0.000371511 0.000327989 0.0575002 0.0505021 44 3909 30 6.99608e+06 235451 787024. 2723.27 1.70 0.147075 0.127698 2632 23 2526 3701 291124 61731 3.65641 3.65641 -142.052 -3.65641 0 0 997811. 3452.63 0.19 0.06 0.0189053 0.0166867 107 60 64 32 62 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 4.88 0.02 7136 1 0.01 -1 -1 30104 -1 -1 17 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66016 32 32 384 304 1 229 81 17 17 289 -1 unnamed_device 0.94 950 0.12 0.00 2.70344 -100.64 -2.70344 2.70344 0.48 0.000364455 0.000321589 0.0553972 0.0481686 44 3252 29 6.99608e+06 250167 787024. 2723.27 1.94 0.142441 0.122872 2221 24 2078 2639 236793 50576 3.26557 3.26557 -129.109 -3.26557 0 0 997811. 3452.63 0.19 0.06 0.018924 0.0167168 99 54 64 32 56 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 4.67 0.03 6900 1 0.01 -1 -1 29932 -1 -1 15 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65712 32 32 340 285 1 218 79 17 17 289 -1 unnamed_device 0.56 940 0.10 0.00 2.54359 -97.7622 -2.54359 2.54359 0.49 0.000308062 0.000269114 0.0463683 0.0401275 40 3040 39 6.99608e+06 220735 706193. 2443.58 2.05 0.127922 0.109463 2476 22 1961 2480 307245 64120 3.11816 3.11816 -133.165 -3.11816 0 0 926341. 3205.33 0.18 0.06 0.0157231 0.0137846 91 62 29 29 64 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 4.86 0.02 6864 1 0.01 -1 -1 29952 -1 -1 11 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65156 30 32 229 211 1 139 73 17 17 289 -1 unnamed_device 1.94 511 0.06 0.00 1.94236 -70.2473 -1.94236 1.94236 0.48 0.000228761 0.000197254 0.0277474 0.0237854 36 1507 25 6.99608e+06 161872 648988. 2245.63 1.13 0.078898 0.0672218 1180 18 764 830 60945 15310 2.42713 2.42713 -89.64 -2.42713 0 0 828058. 2865.25 0.16 0.02 0.00951462 0.00833954 56 29 24 24 30 30
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 4.69 0.02 7060 1 0.01 -1 -1 30256 -1 -1 15 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65884 31 32 337 282 1 209 78 17 17 289 -1 unnamed_device 1.15 854 0.11 0.00 3.17469 -107.124 -3.17469 3.17469 0.49 0.000310141 0.000272351 0.0506974 0.04391 48 2317 29 6.99608e+06 220735 865456. 2994.66 1.53 0.12768 0.10972 1811 21 1438 1751 188871 40162 3.60446 3.60446 -132.081 -3.60446 0 0 1.05005e+06 3633.38 0.20 0.05 0.0149027 0.0131297 91 55 31 31 62 31
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 5.26 0.02 6996 1 0.01 -1 -1 30008 -1 -1 23 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66180 32 32 367 284 1 215 87 17 17 289 -1 unnamed_device 0.39 1028 0.13 0.00 3.28333 -122.211 -3.28333 3.28333 0.49 0.000346648 0.00030566 0.0555818 0.0481426 38 2967 25 6.99608e+06 338461 678818. 2348.85 2.91 0.140074 0.120381 2489 22 2276 3110 276284 55907 4.50585 4.50585 -165.73 -4.50585 0 0 902133. 3121.57 0.17 0.06 0.0170554 0.0150819 97 31 91 32 32 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 4.64 0.03 7400 1 0.01 -1 -1 30464 -1 -1 22 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66904 32 32 461 376 1 303 86 17 17 289 -1 unnamed_device 1.05 1290 0.11 0.00 3.18118 -113.956 -3.18118 3.18118 0.49 0.000381775 0.000334921 0.0484486 0.0420223 46 3406 31 6.99608e+06 323745 828058. 2865.25 1.59 0.142079 0.122681 2631 21 2554 2907 221259 46987 3.89465 3.89465 -146.133 -3.89465 0 0 1.01997e+06 3529.29 0.19 0.05 0.0188731 0.0166978 138 108 0 0 125 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 3.66 0.03 6864 1 0.01 -1 -1 30156 -1 -1 15 26 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65708 26 32 205 193 1 125 73 17 17 289 -1 unnamed_device 0.60 396 0.08 0.00 2.1704 -64.1301 -2.1704 2.1704 0.48 0.00021439 0.000182501 0.0340905 0.0290376 38 1522 25 6.99608e+06 220735 678818. 2348.85 1.25 0.0813941 0.06869 1098 21 777 892 77159 18932 2.29207 2.29207 -78.862 -2.29207 0 0 902133. 3121.57 0.17 0.03 0.00977572 0.00850539 52 21 26 26 22 22
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 4.42 0.03 7096 1 0.02 -1 -1 30096 -1 -1 12 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65500 32 32 334 252 1 181 76 17 17 289 -1 unnamed_device 0.89 736 0.13 0.00 3.41745 -113.256 -3.41745 3.41745 0.55 0.000546998 0.000481695 0.058451 0.0507915 54 2047 27 6.99608e+06 176588 949917. 3286.91 1.44 0.134176 0.116049 1538 23 1547 2401 174771 40682 3.71446 3.71446 -132.237 -3.71446 0 0 1.17392e+06 4061.99 0.22 0.05 0.0165301 0.0145893 75 -1 122 32 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 3.11 0.02 6628 1 0.01 -1 -1 29868 -1 -1 8 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65284 32 32 200 183 1 119 72 17 17 289 -1 unnamed_device 0.23 748 0.07 0.00 1.68521 -71.0218 -1.68521 1.68521 0.47 0.000217305 0.000185922 0.0293536 0.0252151 34 1836 30 6.99608e+06 117725 618332. 2139.56 1.09 0.0801897 0.067956 1520 18 731 958 105768 21250 1.90782 1.90782 -89.5178 -1.90782 0 0 787024. 2723.27 0.16 0.03 0.00898638 0.0078244 44 -1 53 32 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 4.64 0.02 7188 1 0.01 -1 -1 30336 -1 -1 16 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66012 32 32 377 289 1 219 80 17 17 289 -1 unnamed_device 1.08 1059 0.12 0.00 3.21065 -122.9 -3.21065 3.21065 0.50 0.000343257 0.00030157 0.0527726 0.045991 44 3146 46 6.99608e+06 235451 787024. 2723.27 1.60 0.147363 0.127376 2434 23 1989 2766 228289 46478 3.86472 3.86472 -154.86 -3.86472 0 0 997811. 3452.63 0.19 0.05 0.0176573 0.0156703 94 21 96 32 32 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 4.46 0.03 7084 1 0.01 -1 -1 29924 -1 -1 27 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65676 32 32 338 254 1 188 91 17 17 289 -1 unnamed_device 0.31 853 0.12 0.00 2.6432 -95.439 -2.6432 2.6432 0.49 0.00032068 0.000281467 0.0490543 0.0423843 38 2601 40 6.99608e+06 397324 678818. 2348.85 2.25 0.134816 0.115663 1995 20 1523 2214 179560 37867 2.84322 2.84322 -114.835 -2.84322 0 0 902133. 3121.57 0.17 0.04 0.0148746 0.0130653 86 -1 124 32 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 5.34 0.02 7080 1 0.02 -1 -1 30392 -1 -1 19 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66348 32 32 408 320 1 256 83 17 17 289 -1 unnamed_device 0.66 1245 0.12 0.00 3.19965 -122.761 -3.19965 3.19965 0.53 0.000360854 0.000318604 0.0552946 0.0483986 40 3473 48 6.99608e+06 279598 706193. 2443.58 2.65 0.155791 0.134373 3211 24 2803 4071 490937 113949 4.40772 4.40772 -164.956 -4.40772 0 0 926341. 3205.33 0.18 0.09 0.0197207 0.0173044 114 54 64 32 64 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 4.13 0.02 6896 1 0.01 -1 -1 29988 -1 -1 11 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65456 32 32 295 247 1 176 75 17 17 289 -1 unnamed_device 1.03 908 0.09 0.00 2.5114 -93.0261 -2.5114 2.5114 0.48 0.000288946 0.000253815 0.0410086 0.0356395 38 2428 24 6.99608e+06 161872 678818. 2348.85 1.23 0.106748 0.0918609 1998 20 1420 1997 179618 37166 3.20622 3.20622 -125.995 -3.20622 0 0 902133. 3121.57 0.17 0.05 0.0148263 0.0130117 72 31 54 32 32 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 10.50 0.03 6960 1 0.01 -1 -1 30140 -1 -1 13 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64844 30 32 299 247 1 173 75 17 17 289 -1 unnamed_device 6.36 732 0.10 0.00 2.95039 -99.1644 -2.95039 2.95039 0.50 0.000288307 0.000251393 0.0434425 0.0376732 38 2725 49 6.99608e+06 191304 678818. 2348.85 2.23 0.122736 0.104947 1991 25 1877 2771 232942 51823 4.03531 4.03531 -145.546 -4.03531 0 0 902133. 3121.57 0.17 0.05 0.0155059 0.0135655 73 29 60 30 30 30
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 4.50 0.03 6916 1 0.01 -1 -1 30116 -1 -1 15 28 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65360 28 32 283 237 1 163 75 17 17 289 -1 unnamed_device 0.88 609 0.10 0.00 3.06475 -93.0578 -3.06475 3.06475 0.49 0.000278422 0.000242206 0.0456283 0.0394885 46 2234 26 6.99608e+06 220735 828058. 2865.25 1.73 0.110653 0.0952134 1549 20 1321 2004 136862 33312 3.38206 3.38206 -117.866 -3.38206 0 0 1.01997e+06 3529.29 0.19 0.04 0.0128803 0.0113864 72 27 56 28 28 28
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 3.69 0.02 6832 1 0.01 -1 -1 29960 -1 -1 10 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65404 32 32 284 226 1 160 74 17 17 289 -1 unnamed_device 0.20 645 0.09 0.00 2.36125 -92.1242 -2.36125 2.36125 0.51 0.000290946 0.000253922 0.0434725 0.0378266 46 2093 33 6.99608e+06 147157 828058. 2865.25 1.56 0.117442 0.101027 1572 21 1471 2230 156667 36569 3.11062 3.11062 -122.615 -3.11062 0 0 1.01997e+06 3529.29 0.20 0.04 0.0133657 0.0117632 64 -1 96 32 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 5.57 0.02 6968 1 0.01 -1 -1 30212 -1 -1 13 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65472 31 32 305 251 1 185 76 17 17 289 -1 unnamed_device 0.63 731 0.09 0.00 2.50395 -91.5181 -2.50395 2.50395 0.48 0.000283939 0.000247248 0.035874 0.0310173 38 3101 41 6.99608e+06 191304 678818. 2348.85 3.02 0.115355 0.0980756 2029 20 1465 1950 163608 37027 3.20192 3.20192 -124.876 -3.20192 0 0 902133. 3121.57 0.17 0.04 0.0135461 0.0119329 76 26 61 31 31 31
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 6.02 0.02 7080 1 0.02 -1 -1 30068 -1 -1 16 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65688 29 32 316 268 1 197 77 17 17 289 -1 unnamed_device 2.56 920 0.10 0.00 2.40695 -87.2669 -2.40695 2.40695 0.49 0.000290152 0.000253564 0.0452325 0.0390371 38 2516 20 6.99608e+06 235451 678818. 2348.85 1.53 0.109338 0.0937794 2022 30 1808 2228 309987 97499 2.64592 2.64592 -107.39 -2.64592 0 0 902133. 3121.57 0.17 0.07 0.0190727 0.0166277 86 55 29 29 57 29
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 6.50 0.03 7340 1 0.02 -1 -1 30176 -1 -1 20 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66660 32 32 424 311 1 243 84 17 17 289 -1 unnamed_device 0.82 1131 0.15 0.00 3.17765 -117.408 -3.17765 3.17765 0.49 0.000382763 0.000337564 0.0652696 0.0570188 46 3649 36 6.99608e+06 294314 828058. 2865.25 3.62 0.170134 0.146729 2767 23 2303 3663 341023 70309 4.82612 4.82612 -161.366 -4.82612 0 0 1.01997e+06 3529.29 0.19 0.07 0.0204558 0.0181225 106 26 128 32 27 27
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 4.58 0.03 7160 1 0.00 -1 -1 30128 -1 -1 18 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66428 32 32 404 318 1 252 82 17 17 289 -1 unnamed_device 0.86 1045 0.13 0.00 3.07683 -113.223 -3.07683 3.07683 0.49 0.00036305 0.00032024 0.0577511 0.050357 46 3057 32 6.99608e+06 264882 828058. 2865.25 1.71 0.147077 0.127165 2278 24 2650 3448 241104 52442 3.7199 3.7199 -144.827 -3.7199 0 0 1.01997e+06 3529.29 0.20 0.06 0.0194667 0.017245 110 62 62 32 64 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 4.02 0.03 7048 1 0.01 -1 -1 30092 -1 -1 16 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65780 31 32 355 304 1 224 79 17 17 289 -1 unnamed_device 0.67 915 0.12 0.00 2.97559 -102.322 -2.97559 2.97559 0.48 0.000359084 0.000312802 0.0520769 0.0448143 40 2597 42 6.99608e+06 235451 706193. 2443.58 1.46 0.133177 0.114035 2144 18 1484 1528 154706 33587 3.60166 3.60166 -130.849 -3.60166 0 0 926341. 3205.33 0.18 0.04 0.0132324 0.0116865 99 77 0 0 89 31
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 4.85 0.03 7264 1 0.01 -1 -1 30204 -1 -1 19 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66220 31 32 393 311 1 242 82 17 17 289 -1 unnamed_device 0.66 1186 0.12 0.00 2.97859 -109.177 -2.97859 2.97859 0.55 0.000367223 0.000324497 0.0551586 0.0483479 44 3057 43 6.99608e+06 279598 787024. 2723.27 2.15 0.152277 0.131606 2425 22 2103 2796 237295 49584 3.81776 3.81776 -138.721 -3.81776 0 0 997811. 3452.63 0.20 0.06 0.0182476 0.0160665 106 59 60 30 62 31
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 4.36 0.02 7192 1 0.01 -1 -1 30372 -1 -1 23 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66800 31 32 457 373 1 302 86 17 17 289 -1 unnamed_device 0.84 1413 0.13 0.00 3.77697 -137.019 -3.77697 3.77697 0.48 0.000414763 0.000349878 0.0549526 0.0473699 50 3461 22 6.99608e+06 338461 902133. 3121.57 1.51 0.143946 0.124352 3002 24 2894 3380 343277 72926 4.59491 4.59491 -172.388 -4.59491 0 0 1.08113e+06 3740.92 0.21 0.07 0.0213514 0.0189224 138 111 0 0 124 31
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 6.27 0.03 7148 1 0.02 -1 -1 30184 -1 -1 18 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66468 31 32 415 335 1 256 81 17 17 289 -1 unnamed_device 2.02 1323 0.13 0.00 4.28608 -136.466 -4.28608 4.28608 0.50 0.000381836 0.000337063 0.0617997 0.0539627 40 3485 28 6.99608e+06 264882 706193. 2443.58 2.22 0.157801 0.136534 3127 20 2446 3136 344371 84142 5.05334 5.05334 -180.8 -5.05334 0 0 926341. 3205.33 0.18 0.07 0.0179779 0.0158675 115 86 31 31 89 31
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 5.83 0.03 7264 1 0.02 -1 -1 30232 -1 -1 20 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66372 31 32 393 311 1 241 83 17 17 289 -1 unnamed_device 1.87 989 0.14 0.00 2.89909 -102.697 -2.89909 2.89909 0.50 0.000352895 0.000310398 0.0592883 0.0515789 46 2994 29 6.99608e+06 294314 828058. 2865.25 1.94 0.156043 0.134439 2081 21 1964 2642 175840 42007 3.67846 3.67846 -131.09 -3.67846 0 0 1.01997e+06 3529.29 0.19 0.05 0.0173946 0.0153706 107 58 60 31 62 31
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 4.49 0.03 7208 1 0.01 -1 -1 30520 -1 -1 18 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66388 32 32 408 320 1 252 82 17 17 289 -1 unnamed_device 0.71 996 0.13 0.00 3.17765 -114.564 -3.17765 3.17765 0.48 0.000345862 0.000303134 0.0574461 0.0495185 48 3123 38 6.99608e+06 264882 865456. 2994.66 1.80 0.14608 0.125255 2374 23 2348 2952 260756 55859 4.08042 4.08042 -154.109 -4.08042 0 0 1.05005e+06 3633.38 0.20 0.06 0.0183837 0.0161144 111 42 64 32 64 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 6.81 0.03 7420 1 0.01 -1 -1 30244 -1 -1 22 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 67148 32 32 497 381 1 313 86 17 17 289 -1 unnamed_device 1.70 1380 0.16 0.00 3.68467 -134.138 -3.68467 3.68467 0.48 0.000617142 0.000558934 0.072256 0.0634415 48 4049 47 6.99608e+06 323745 865456. 2994.66 3.00 0.203471 0.176728 3276 24 3550 5022 511261 104006 5.24264 5.24264 -182.856 -5.24264 0 0 1.05005e+06 3633.38 0.20 0.09 0.0239786 0.0212251 140 91 62 32 96 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 4.76 0.02 6992 1 0.01 -1 -1 30296 -1 -1 13 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65260 31 32 307 252 1 181 76 17 17 289 -1 unnamed_device 0.68 773 0.09 0.00 2.6211 -98.0408 -2.6211 2.6211 0.49 0.000285568 0.000250012 0.0414035 0.0360019 36 2260 47 6.99608e+06 191304 648988. 2245.63 2.25 0.128346 0.110439 1869 24 1751 2147 174839 36157 3.32827 3.32827 -132.003 -3.32827 0 0 828058. 2865.25 0.16 0.04 0.0152148 0.0133991 75 24 62 31 31 31
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 5.87 0.03 7128 1 0.01 -1 -1 30148 -1 -1 18 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66264 31 32 397 313 1 243 81 17 17 289 -1 unnamed_device 0.55 1150 0.11 0.00 3.60594 -125.644 -3.60594 3.60594 0.48 0.000344882 0.000303203 0.0467788 0.0403128 38 3545 28 6.99608e+06 264882 678818. 2348.85 3.41 0.134379 0.114995 2729 21 2286 2810 236965 48757 4.99581 4.99581 -172.205 -4.99581 0 0 902133. 3121.57 0.17 0.05 0.0169395 0.014967 106 59 62 31 62 31
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 5.88 0.02 7108 1 0.01 -1 -1 30332 -1 -1 19 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66500 32 32 398 314 1 246 83 17 17 289 -1 unnamed_device 1.21 1118 0.13 0.00 2.96759 -109.082 -2.96759 2.96759 0.48 0.000351768 0.000310077 0.055019 0.0479957 40 3916 39 6.99608e+06 279598 706193. 2443.58 2.69 0.147789 0.127509 2922 21 2097 3016 287267 61199 3.88806 3.88806 -149.047 -3.88806 0 0 926341. 3205.33 0.18 0.06 0.0173176 0.0152848 107 54 62 32 62 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 8.84 0.03 7152 1 0.01 -1 -1 30032 -1 -1 13 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65620 32 32 346 258 1 188 77 17 17 289 -1 unnamed_device 0.90 1042 0.11 0.00 2.93179 -117.92 -2.93179 2.93179 0.48 0.000337626 0.000298601 0.0492838 0.0431456 38 3336 42 6.99608e+06 191304 678818. 2348.85 5.93 0.147446 0.126907 2733 26 2186 3756 467038 103375 4.29666 4.29666 -168.797 -4.29666 0 0 902133. 3121.57 0.17 0.09 0.0202605 0.0177833 79 -1 128 32 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 4.60 0.03 7188 1 0.01 -1 -1 30368 -1 -1 19 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66336 32 32 425 344 1 266 83 17 17 289 -1 unnamed_device 1.08 1234 0.13 0.00 2.70344 -109.413 -2.70344 2.70344 0.48 0.000353832 0.000309243 0.0533098 0.0456354 46 2898 24 6.99608e+06 279598 828058. 2865.25 1.48 0.137622 0.117804 2506 23 2249 2732 231211 46557 3.22421 3.22421 -136.12 -3.22421 0 0 1.01997e+06 3529.29 0.23 0.09 0.0302898 0.0268014 120 81 25 25 96 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 4.49 0.02 7068 1 0.01 -1 -1 30120 -1 -1 20 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66504 32 32 396 312 1 242 84 17 17 289 -1 unnamed_device 0.78 1085 0.15 0.00 3.02259 -110.553 -3.02259 3.02259 0.49 0.00036566 0.000321124 0.0685405 0.0595664 48 3085 34 6.99608e+06 294314 865456. 2994.66 1.68 0.158555 0.137023 2594 23 2104 2816 323780 87246 4.02946 4.02946 -152.634 -4.02946 0 0 1.05005e+06 3633.38 0.20 0.07 0.0187508 0.0166295 106 58 64 32 60 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 4.52 0.02 7084 1 0.02 -1 -1 30204 -1 -1 17 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66316 32 32 406 319 1 253 81 17 17 289 -1 unnamed_device 0.59 1054 0.18 0.00 2.95409 -109.376 -2.95409 2.95409 0.49 0.000368535 0.000325255 0.0820057 0.0715007 46 3349 29 6.99608e+06 250167 828058. 2865.25 1.81 0.173024 0.149686 2488 19 2194 2803 210519 45239 3.36556 3.36556 -137.511 -3.36556 0 0 1.01997e+06 3529.29 0.23 0.05 0.0174432 0.0155607 108 61 63 32 64 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 4.59 0.03 7180 1 0.02 -1 -1 30264 -1 -1 16 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66044 32 32 377 289 1 218 80 17 17 289 -1 unnamed_device 0.87 917 0.15 0.00 3.31395 -120.99 -3.31395 3.31395 0.48 0.000340719 0.000299242 0.0690104 0.060529 46 2997 25 6.99608e+06 235451 828058. 2865.25 1.72 0.153483 0.132649 2235 23 2204 3174 257326 52783 4.08532 4.08532 -154.687 -4.08532 0 0 1.01997e+06 3529.29 0.20 0.06 0.0182592 0.0160321 94 21 96 32 32 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 4.34 0.02 7204 1 0.01 -1 -1 30364 -1 -1 18 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65984 32 32 408 320 1 251 82 17 17 289 -1 unnamed_device 0.74 968 0.12 0.00 3.18865 -116.003 -3.18865 3.18865 0.50 0.000360091 0.000317015 0.0564367 0.0494093 50 2928 41 6.99608e+06 264882 902133. 3121.57 1.54 0.151728 0.131557 2155 26 2346 2818 321453 105967 4.48752 4.48752 -160.45 -4.48752 0 0 1.08113e+06 3740.92 0.21 0.07 0.0202585 0.0178189 110 50 64 32 64 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 4.87 0.02 7192 1 0.02 -1 -1 30216 -1 -1 22 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66792 31 32 451 369 1 290 85 17 17 289 -1 unnamed_device 1.20 1390 0.14 0.00 3.27348 -118.609 -3.27348 3.27348 0.49 0.000390134 0.000344308 0.0613665 0.0533177 46 3480 24 6.99608e+06 323745 828058. 2865.25 1.65 0.14975 0.129384 2896 23 2344 2719 229007 46796 3.97935 3.97935 -149.303 -3.97935 0 0 1.01997e+06 3529.29 0.19 0.05 0.019478 0.0172458 132 110 0 0 122 31
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 5.31 0.02 7100 1 0.02 -1 -1 30328 -1 -1 20 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66832 32 32 433 347 1 281 84 17 17 289 -1 unnamed_device 0.80 1353 0.15 0.00 3.16475 -118.961 -3.16475 3.16475 0.50 0.000381234 0.000336142 0.0666033 0.0581248 46 3805 43 6.99608e+06 294314 828058. 2865.25 2.36 0.170782 0.147371 2979 22 2760 3834 315915 63454 4.16672 4.16672 -152.633 -4.16672 0 0 1.01997e+06 3529.29 0.20 0.07 0.0209021 0.0183942 126 86 32 32 94 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 4.51 0.02 6864 1 0.02 -1 -1 30188 -1 -1 13 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65412 32 32 313 256 1 191 77 17 17 289 -1 unnamed_device 0.64 736 0.10 0.00 2.51495 -93.6497 -2.51495 2.51495 0.49 0.000286772 0.000249845 0.0431386 0.0370524 40 2308 47 6.99608e+06 191304 706193. 2443.58 1.92 0.123068 0.105268 1965 23 1641 2249 219000 46777 3.20812 3.20812 -127.415 -3.20812 0 0 926341. 3205.33 0.18 0.05 0.0149662 0.0130943 80 20 63 32 32 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 4.48 0.03 6992 1 0.01 -1 -1 30032 -1 -1 16 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66140 32 32 371 315 1 244 80 17 17 289 -1 unnamed_device 0.72 1028 0.11 0.00 3.05483 -112.491 -3.05483 3.05483 0.49 0.000330329 0.000289256 0.0475188 0.0413847 44 3182 40 6.99608e+06 235451 787024. 2723.27 1.76 0.129571 0.111552 2378 20 2215 2578 261910 51649 4.03256 4.03256 -150.249 -4.03256 0 0 997811. 3452.63 0.19 0.05 0.015232 0.013439 108 91 0 0 94 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 5.84 0.03 7212 1 0.01 -1 -1 30484 -1 -1 20 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66624 32 32 470 352 1 285 84 17 17 289 -1 unnamed_device 0.79 1298 0.15 0.00 3.74199 -135.939 -3.74199 3.74199 0.49 0.000412551 0.000363465 0.0650085 0.0568615 46 3906 25 6.99608e+06 294314 828058. 2865.25 2.95 0.170892 0.147782 2939 23 2865 3873 323539 65617 4.77196 4.77196 -178.862 -4.77196 0 0 1.01997e+06 3529.29 0.19 0.08 0.0275766 0.0244996 127 53 96 32 64 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 5.06 0.02 7048 1 0.01 -1 -1 30080 -1 -1 16 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66144 32 32 369 285 1 217 80 17 17 289 -1 unnamed_device 0.50 872 0.20 0.00 2.70344 -102.09 -2.70344 2.70344 0.56 0.000574344 0.000507061 0.0917817 0.0801462 40 2953 40 6.99608e+06 235451 706193. 2443.58 2.46 0.181165 0.156655 2134 22 1927 2505 206580 45036 3.92101 3.92101 -139.797 -3.92101 0 0 926341. 3205.33 0.18 0.05 0.0172554 0.0152516 93 31 92 32 32 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 6.45 0.03 6872 1 0.01 -1 -1 30000 -1 -1 24 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65328 30 32 299 247 1 177 86 17 17 289 -1 unnamed_device 0.50 813 0.09 0.00 3.12595 -104.703 -3.12595 3.12595 0.48 0.000284241 0.000249174 0.0364115 0.0313692 36 2647 38 6.99608e+06 353176 648988. 2245.63 4.08 0.116364 0.0988443 2141 23 1691 2413 236731 47580 3.78796 3.78796 -138.834 -3.78796 0 0 828058. 2865.25 0.17 0.06 0.0157627 0.0137161 80 29 60 30 30 30
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 5.42 0.03 7312 1 0.01 -1 -1 30524 -1 -1 25 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 67752 32 32 532 414 1 346 89 17 17 289 -1 unnamed_device 0.70 1486 0.17 0.00 4.21792 -149.635 -4.21792 4.21792 0.48 0.000434785 0.000385598 0.0729709 0.0638559 44 5460 43 6.99608e+06 367892 787024. 2723.27 2.63 0.196978 0.170048 3382 22 3578 4362 373166 76849 5.69089 5.69089 -203.684 -5.69089 0 0 997811. 3452.63 0.19 0.08 0.022517 0.01996 159 109 32 32 128 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 4.07 0.02 7044 1 0.02 -1 -1 30072 -1 -1 16 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66252 32 32 377 289 1 217 80 17 17 289 -1 unnamed_device 0.58 1076 0.11 0.00 3.38828 -130.14 -3.38828 3.38828 0.49 0.000348541 0.000307519 0.0507933 0.0442738 44 2957 28 6.99608e+06 235451 787024. 2723.27 1.55 0.135157 0.116867 2278 22 2177 2863 229138 45526 4.15165 4.15165 -160.398 -4.15165 0 0 997811. 3452.63 0.19 0.05 0.0174513 0.0154229 92 31 96 32 32 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 3.81 0.03 6924 1 0.01 -1 -1 30012 -1 -1 24 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64788 32 32 284 226 1 158 88 17 17 289 -1 unnamed_device 0.22 629 0.11 0.00 2.45355 -93.5728 -2.45355 2.45355 0.49 0.000284393 0.000247154 0.0438331 0.0374433 44 2166 26 6.99608e+06 353176 787024. 2723.27 1.56 0.112029 0.0953344 1616 21 1463 2191 162680 35369 2.74702 2.74702 -114.108 -2.74702 0 0 997811. 3452.63 0.20 0.04 0.0130137 0.0114127 70 -1 96 32 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 4.83 0.03 7176 1 0.02 -1 -1 30344 -1 -1 19 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66464 32 32 439 321 1 256 83 17 17 289 -1 unnamed_device 0.62 1255 0.15 0.00 3.80749 -142.213 -3.80749 3.80749 0.49 0.000463134 0.000393317 0.0634084 0.0554794 48 3564 24 6.99608e+06 279598 865456. 2994.66 2.11 0.159389 0.138242 3007 21 2666 3940 415636 77191 4.97056 4.97056 -186.331 -4.97056 0 0 1.05005e+06 3633.38 0.20 0.07 0.0194242 0.0171122 113 26 128 32 32 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 3.65 0.03 7112 1 0.01 -1 -1 30044 -1 -1 10 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64744 32 32 284 226 1 156 74 17 17 289 -1 unnamed_device 0.30 695 0.09 0.00 2.36125 -94.0936 -2.36125 2.36125 0.49 0.000294763 0.000258184 0.0396487 0.0344417 40 2104 25 6.99608e+06 147157 706193. 2443.58 1.45 0.107171 0.0919511 1858 25 1756 2743 279739 59893 3.57882 3.57882 -133.903 -3.57882 0 0 926341. 3205.33 0.18 0.06 0.015487 0.0135054 62 -1 96 32 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 6.92 0.02 7072 1 0.01 -1 -1 30068 -1 -1 15 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65196 30 32 299 247 1 179 77 17 17 289 -1 unnamed_device 0.66 887 0.10 0.00 2.68144 -102.13 -2.68144 2.68144 0.49 0.000280296 0.000244448 0.043501 0.0374547 36 2621 43 6.99608e+06 220735 648988. 2245.63 4.33 0.122412 0.10438 2263 29 2139 2839 441899 147108 3.32451 3.32451 -131.745 -3.32451 0 0 828058. 2865.25 0.17 0.09 0.0177635 0.0154306 74 29 60 30 30 30
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 6.30 0.02 7288 1 0.01 -1 -1 30084 -1 -1 20 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66476 29 32 397 323 1 244 81 17 17 289 -1 unnamed_device 1.46 1279 0.11 0.00 3.16913 -110.582 -3.16913 3.16913 0.48 0.000347265 0.000305294 0.0460169 0.0400388 38 3570 33 6.99608e+06 294314 678818. 2348.85 2.92 0.133661 0.115081 2869 23 2308 3156 264554 54513 4.0426 4.0426 -148.295 -4.0426 0 0 902133. 3121.57 0.17 0.06 0.0180859 0.0159332 112 81 29 29 85 29
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 4.39 0.02 7200 1 0.01 -1 -1 30392 -1 -1 17 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66360 32 32 408 320 1 248 81 17 17 289 -1 unnamed_device 0.78 1091 0.11 0.00 3.58404 -133.907 -3.58404 3.58404 0.49 0.000374746 0.000330562 0.047973 0.0418549 40 2984 46 6.99608e+06 250167 706193. 2443.58 1.67 0.147653 0.127742 2803 22 2699 3605 352504 70353 4.87575 4.87575 -180.537 -4.87575 0 0 926341. 3205.33 0.18 0.07 0.0186486 0.0165034 108 53 64 32 64 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 5.59 0.02 7084 1 0.03 -1 -1 30276 -1 -1 17 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66524 32 32 408 320 1 249 81 17 17 289 -1 unnamed_device 0.94 1031 0.13 0.00 3.55104 -126.039 -3.55104 3.55104 0.49 0.000364573 0.000321436 0.0591132 0.0515198 46 3662 48 6.99608e+06 250167 828058. 2865.25 2.58 0.16267 0.14015 2517 22 2581 3491 278291 61580 4.99101 4.99101 -176.129 -4.99101 0 0 1.01997e+06 3529.29 0.19 0.07 0.0201424 0.0178928 110 55 64 32 64 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 4.41 0.02 6908 1 0.01 -1 -1 30224 -1 -1 15 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65908 32 32 346 288 1 212 79 17 17 289 -1 unnamed_device 0.65 846 0.16 0.00 2.92729 -107.014 -2.92729 2.92729 0.56 0.000456912 0.000396839 0.072015 0.0621395 40 2477 32 6.99608e+06 220735 706193. 2443.58 1.69 0.151181 0.129322 2067 23 1911 2189 224474 47175 3.58136 3.58136 -141.106 -3.58136 0 0 926341. 3205.33 0.18 0.05 0.0156095 0.0136637 92 55 32 32 64 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 5.79 0.03 7016 1 0.01 -1 -1 30132 -1 -1 17 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65804 31 32 355 304 1 230 80 17 17 289 -1 unnamed_device 2.02 1186 0.10 0.00 2.64844 -102.123 -2.64844 2.64844 0.55 0.000316062 0.00027724 0.0434737 0.0377007 44 2907 38 6.99608e+06 250167 787024. 2723.27 1.74 0.126304 0.108613 2307 23 1840 2301 207785 40865 3.15992 3.15992 -127.094 -3.15992 0 0 997811. 3452.63 0.19 0.05 0.016045 0.0141331 102 82 0 0 89 31
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 4.49 0.05 7032 1 0.01 -1 -1 30216 -1 -1 19 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66352 30 32 377 300 1 226 81 17 17 289 -1 unnamed_device 0.94 912 0.12 0.00 2.77544 -94.8116 -2.77544 2.77544 0.48 0.000395382 0.000345849 0.0529269 0.0459509 44 3236 47 6.99608e+06 279598 787024. 2723.27 1.40 0.141711 0.12188 2009 21 1843 2551 184937 42170 3.16697 3.16697 -115.245 -3.16697 0 0 997811. 3452.63 0.29 0.05 0.0167809 0.0147948 101 52 60 30 57 30
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 4.55 0.03 7096 1 0.01 -1 -1 30176 -1 -1 18 28 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65780 28 32 337 265 1 197 78 17 17 289 -1 unnamed_device 0.96 981 0.12 0.00 3.18385 -109.765 -3.18385 3.18385 0.49 0.000327276 0.000271594 0.0519688 0.0450172 40 2557 26 6.99608e+06 264882 706193. 2443.58 1.57 0.124429 0.107138 2402 20 1898 2719 262382 52141 4.21166 4.21166 -145.287 -4.21166 0 0 926341. 3205.33 0.18 0.05 0.0148758 0.0131797 87 20 84 28 28 28
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 5.24 0.03 7220 1 0.01 -1 -1 30036 -1 -1 15 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65612 30 32 328 276 1 204 77 17 17 289 -1 unnamed_device 1.45 843 0.11 0.00 3.02363 -103.784 -3.02363 3.02363 0.48 0.00030485 0.0002667 0.0482994 0.0418559 56 2176 46 6.99608e+06 220735 973134. 3367.25 1.70 0.128745 0.111014 1817 21 1805 2415 231885 52674 3.9283 3.9283 -139.542 -3.9283 0 0 1.19926e+06 4149.71 0.24 0.05 0.0148047 0.0130822 88 58 30 30 60 30
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 6.55 0.03 6980 1 0.01 -1 -1 30016 -1 -1 15 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65924 32 32 362 309 1 241 79 17 17 289 -1 unnamed_device 2.33 969 0.11 0.00 2.85509 -103.469 -2.85509 2.85509 0.48 0.000320885 0.000280776 0.0490314 0.0425191 46 2765 26 6.99608e+06 220735 828058. 2865.25 2.02 0.123779 0.106006 2005 25 1902 2350 166328 39855 3.48116 3.48116 -129.784 -3.48116 0 0 1.01997e+06 3529.29 0.30 0.08 0.0303604 0.0266691 104 88 0 0 91 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 4.38 0.03 7076 1 0.01 -1 -1 29972 -1 -1 25 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65848 31 32 337 253 1 188 88 17 17 289 -1 unnamed_device 0.14 1104 0.12 0.00 3.26375 -119.86 -3.26375 3.26375 0.50 0.000353094 0.000308611 0.0493046 0.0429495 40 2896 46 6.99608e+06 367892 706193. 2443.58 2.30 0.139768 0.120461 2562 20 1908 2970 338811 74063 4.17272 4.17272 -154.816 -4.17272 0 0 926341. 3205.33 0.18 0.06 0.0153765 0.0135801 86 -1 124 31 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 5.33 0.03 7228 1 0.02 -1 -1 30288 -1 -1 17 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66396 32 32 408 320 1 249 81 17 17 289 -1 unnamed_device 0.58 1203 0.13 0.00 3.46484 -127.188 -3.46484 3.46484 0.51 0.000445079 0.000396795 0.0560958 0.0488325 44 3705 40 6.99608e+06 250167 787024. 2723.27 2.68 0.154257 0.132597 2796 19 2123 2790 257095 51281 4.48681 4.48681 -164.982 -4.48681 0 0 997811. 3452.63 0.19 0.05 0.0163821 0.0145098 110 57 64 32 64 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 4.73 0.03 7084 1 0.01 -1 -1 30072 -1 -1 18 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66384 32 32 408 320 1 248 82 17 17 289 -1 unnamed_device 0.51 1125 0.14 0.00 3.76167 -134.979 -3.76167 3.76167 0.49 0.000540165 0.000480103 0.0577995 0.0504805 46 3408 34 6.99608e+06 264882 828058. 2865.25 2.17 0.152952 0.132307 2513 22 2679 3671 321455 70202 4.64614 4.64614 -175.579 -4.64614 0 0 1.01997e+06 3529.29 0.19 0.07 0.0189736 0.0168419 108 62 64 32 64 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 4.79 0.02 7184 1 0.01 -1 -1 30184 -1 -1 18 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65948 32 32 400 316 1 250 82 17 17 289 -1 unnamed_device 0.52 1199 0.16 0.00 3.26013 -122.076 -3.26013 3.26013 0.53 0.000355498 0.000312751 0.0708576 0.0614816 44 3990 41 6.99608e+06 264882 787024. 2723.27 2.07 0.16772 0.144548 2982 22 2237 3214 281617 56907 3.867 3.867 -154.073 -3.867 0 0 997811. 3452.63 0.19 0.06 0.0185753 0.0165194 107 62 60 30 64 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 4.92 0.02 6988 1 0.01 -1 -1 29968 -1 -1 13 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65340 30 32 299 247 1 179 75 17 17 289 -1 unnamed_device 0.71 726 0.10 0.00 2.92109 -103.353 -2.92109 2.92109 0.49 0.000284717 0.000248685 0.04268 0.0370175 38 2635 27 6.99608e+06 191304 678818. 2348.85 2.34 0.112271 0.0960909 2227 20 1664 2292 253056 52687 3.57516 3.57516 -134.843 -3.57516 0 0 902133. 3121.57 0.17 0.05 0.0132 0.0116524 76 29 60 30 30 30
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 6.36 0.02 7184 1 0.01 -1 -1 30212 -1 -1 18 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66304 30 32 386 306 1 237 80 17 17 289 -1 unnamed_device 1.71 937 0.13 0.00 3.75497 -123.119 -3.75497 3.75497 0.48 0.000364256 0.000322654 0.0572827 0.0501903 40 3260 49 6.99608e+06 264882 706193. 2443.58 2.62 0.155989 0.13488 2735 25 2990 4275 450457 96732 5.49324 5.49324 -185.603 -5.49324 0 0 926341. 3205.33 0.22 0.09 0.0208089 0.0182553 105 58 60 30 60 30
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 4.41 0.03 7260 1 0.02 -1 -1 30432 -1 -1 22 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66732 32 32 470 382 1 309 86 17 17 289 -1 unnamed_device 0.62 1343 0.14 0.00 3.46484 -126.837 -3.46484 3.46484 0.49 0.000371863 0.000326105 0.0603383 0.0517813 44 3993 47 6.99608e+06 323745 787024. 2723.27 1.59 0.164866 0.140906 2783 24 2559 2657 237002 49192 4.60411 4.60411 -168.086 -4.60411 0 0 997811. 3452.63 0.26 0.08 0.026082 0.0228751 139 106 0 0 128 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 6.52 0.03 7260 1 0.02 -1 -1 30296 -1 -1 21 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66696 31 32 427 343 1 275 84 17 17 289 -1 unnamed_device 1.28 1283 0.13 0.00 3.56204 -127.366 -3.56204 3.56204 0.49 0.000374939 0.00033 0.0562966 0.0491086 38 3587 47 6.99608e+06 309029 678818. 2348.85 3.27 0.162304 0.140217 2850 20 2443 2887 247184 50523 4.70141 4.70141 -165.987 -4.70141 0 0 902133. 3121.57 0.17 0.05 0.017639 0.0156797 124 79 31 31 93 31
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 6.13 0.02 7240 1 0.01 -1 -1 30320 -1 -1 22 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66412 30 32 407 331 1 249 84 17 17 289 -1 unnamed_device 2.30 952 0.13 0.00 3.22223 -107.539 -3.22223 3.22223 0.49 0.00036446 0.000321105 0.0582664 0.0506746 54 2733 30 6.99608e+06 323745 949917. 3286.91 1.75 0.144811 0.124967 1969 24 2549 3734 296866 68146 3.6729 3.6729 -132.475 -3.6729 0 0 1.17392e+06 4061.99 0.23 0.06 0.0188781 0.0166636 114 83 26 26 90 30
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 6.08 0.03 7032 1 0.02 -1 -1 30212 -1 -1 18 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66380 32 32 408 320 1 252 82 17 17 289 -1 unnamed_device 0.80 1200 0.13 0.00 3.58404 -130.799 -3.58404 3.58404 0.48 0.000368234 0.000325449 0.0567945 0.0497768 46 3983 34 6.99608e+06 264882 828058. 2865.25 3.27 0.153151 0.13223 2853 23 2712 3768 368052 72683 5.18661 5.18661 -184.993 -5.18661 0 0 1.01997e+06 3529.29 0.19 0.07 0.019347 0.0171113 110 58 64 32 64 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 5.82 0.02 7284 1 0.01 -1 -1 30104 -1 -1 20 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66436 29 32 391 320 1 240 81 17 17 289 -1 unnamed_device 1.51 1170 0.12 0.00 2.94449 -101.049 -2.94449 2.94449 0.51 0.000344976 0.000303415 0.0543108 0.0472258 38 3152 31 6.99608e+06 294314 678818. 2348.85 2.31 0.144382 0.124041 2577 20 1938 2504 204414 42882 3.73186 3.73186 -133.432 -3.73186 0 0 902133. 3121.57 0.17 0.05 0.0163346 0.0145003 110 81 26 26 85 29
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 5.27 0.02 6948 1 0.01 -1 -1 29892 -1 -1 10 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64812 32 32 284 226 1 157 74 17 17 289 -1 unnamed_device 0.78 605 0.11 0.00 2.35025 -90.2328 -2.35025 2.35025 0.49 0.000332868 0.000290797 0.0489912 0.042598 38 2572 36 6.99608e+06 147157 678818. 2348.85 2.56 0.12473 0.106786 1889 24 1605 2521 270085 57375 3.36922 3.36922 -134.263 -3.36922 0 0 902133. 3121.57 0.17 0.05 0.0145609 0.0127648 63 -1 96 32 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 5.16 0.03 7072 1 0.01 -1 -1 30160 -1 -1 18 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66220 32 32 408 320 1 251 82 17 17 289 -1 unnamed_device 0.54 1135 0.13 0.00 3.76167 -137.127 -3.76167 3.76167 0.48 0.000371691 0.00032802 0.0583101 0.051056 44 3706 33 6.99608e+06 264882 787024. 2723.27 2.62 0.15281 0.132155 2667 22 2872 3966 378521 75680 4.76044 4.76044 -175.356 -4.76044 0 0 997811. 3452.63 0.20 0.07 0.0185775 0.0164216 110 62 64 32 64 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 5.12 0.02 7112 1 0.01 -1 -1 30092 -1 -1 17 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66496 32 32 408 320 1 255 81 17 17 289 -1 unnamed_device 0.70 1053 0.13 0.00 3.75497 -131.665 -3.75497 3.75497 0.49 0.000373861 0.000330754 0.0593201 0.0519522 46 3690 40 6.99608e+06 250167 828058. 2865.25 2.39 0.161285 0.13975 2686 23 3016 4159 372226 76538 4.77715 4.77715 -172.798 -4.77715 0 0 1.01997e+06 3529.29 0.19 0.07 0.0193437 0.0171654 111 62 64 32 64 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 5.64 0.03 7028 1 0.01 -1 -1 30172 -1 -1 13 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65740 32 32 316 268 1 202 77 17 17 289 -1 unnamed_device 1.73 965 0.09 0.00 2.56059 -95.9725 -2.56059 2.56059 0.48 0.000291972 0.000254096 0.0365677 0.0315259 38 2733 39 6.99608e+06 191304 678818. 2348.85 2.05 0.109422 0.0934149 2271 22 1528 1756 170492 34684 3.34252 3.34252 -128.284 -3.34252 0 0 902133. 3121.57 0.17 0.04 0.0142327 0.0125265 85 47 32 32 54 27
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 3.26 0.02 6888 1 0.02 -1 -1 30024 -1 -1 11 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64980 31 32 277 222 1 154 74 17 17 289 -1 unnamed_device 0.20 657 0.09 0.00 2.6052 -96.0968 -2.6052 2.6052 0.49 0.000274325 0.000240607 0.0416674 0.0362628 40 1907 23 6.99608e+06 161872 706193. 2443.58 1.16 0.104859 0.0904137 1686 21 1463 2141 210905 43189 3.25127 3.25127 -124.857 -3.25127 0 0 926341. 3205.33 0.18 0.05 0.0133026 0.0116483 63 -1 93 31 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 4.37 0.03 7112 1 0.01 -1 -1 30068 -1 -1 17 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66164 32 32 382 304 1 235 81 17 17 289 -1 unnamed_device 0.83 908 0.12 0.00 3.30848 -112.998 -3.30848 3.30848 0.49 0.000337056 0.000295533 0.0555743 0.0483452 44 3094 46 6.99608e+06 250167 787024. 2723.27 1.51 0.147617 0.127349 2187 22 2040 2463 194504 43159 4.40855 4.40855 -150.493 -4.40855 0 0 997811. 3452.63 0.24 0.05 0.0174259 0.0152464 102 56 60 32 58 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 6.94 0.02 7212 1 0.01 -1 -1 30208 -1 -1 19 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66244 32 32 407 331 1 251 83 17 17 289 -1 unnamed_device 2.79 1050 0.13 0.00 3.48984 -117.387 -3.48984 3.48984 0.48 0.000353355 0.000310985 0.0552684 0.0478727 40 3692 46 6.99608e+06 279598 706193. 2443.58 2.16 0.154383 0.132593 2820 34 2603 3103 337827 93347 5.11511 5.11511 -174.474 -5.11511 0 0 926341. 3205.33 0.18 0.08 0.0247377 0.0217626 113 81 28 28 88 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 4.19 0.04 7260 1 0.00 -1 -1 30116 -1 -1 27 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65848 32 32 400 286 1 218 91 17 17 289 -1 unnamed_device 0.33 969 0.14 0.00 3.52884 -123.799 -3.52884 3.52884 0.49 0.000482277 0.000433837 0.0570742 0.0496841 46 2957 27 6.99608e+06 397324 828058. 2865.25 1.83 0.148705 0.128536 2305 23 2445 3815 286086 60783 4.6419 4.6419 -165.818 -4.6419 0 0 1.01997e+06 3529.29 0.19 0.06 0.0195113 0.0173103 100 -1 156 32 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 4.28 0.03 7192 1 0.02 -1 -1 30264 -1 -1 20 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66088 30 32 374 298 1 227 82 17 17 289 -1 unnamed_device 0.79 899 0.13 0.00 2.98539 -96.9001 -2.98539 2.98539 0.49 0.00034087 0.000296077 0.0559902 0.0485512 54 2423 23 6.99608e+06 294314 949917. 3286.91 1.42 0.132457 0.114667 1785 20 1605 2157 172128 37863 3.22817 3.22817 -116.1 -3.22817 0 0 1.17392e+06 4061.99 0.22 0.04 0.016075 0.0142491 102 47 60 30 56 30
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 4.20 0.02 7052 1 0.01 -1 -1 30260 -1 -1 16 27 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65696 27 32 275 232 1 153 75 17 17 289 -1 unnamed_device 1.12 554 0.09 0.00 3.14605 -89.0983 -3.14605 3.14605 0.56 0.000274211 0.00023933 0.0422693 0.0365826 40 1596 33 6.99608e+06 235451 706193. 2443.58 1.10 0.107035 0.0917248 1296 22 1294 1795 137213 32906 3.56231 3.56231 -118.353 -3.56231 0 0 926341. 3205.33 0.18 0.04 0.0131014 0.0114491 68 26 54 27 27 27
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 5.82 0.03 7288 1 0.03 -1 -1 30440 -1 -1 21 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66908 32 32 494 379 1 313 85 17 17 289 -1 unnamed_device 0.64 1529 0.16 0.00 3.55724 -129.912 -3.55724 3.55724 0.49 0.000427041 0.000378164 0.0703785 0.0614708 46 4349 48 6.99608e+06 309029 828058. 2865.25 3.04 0.20086 0.17312 3589 23 2854 3977 381574 76196 4.59931 4.59931 -170.903 -4.59931 0 0 1.01997e+06 3529.29 0.21 0.08 0.0244495 0.0213816 140 85 62 31 95 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 6.89 0.03 7176 1 0.01 -1 -1 30548 -1 -1 22 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66800 31 32 457 373 1 302 85 17 17 289 -1 unnamed_device 2.08 1400 0.14 0.00 3.87597 -140.47 -3.87597 3.87597 0.48 0.000416851 0.0003493 0.0648311 0.0565456 40 3720 31 6.99608e+06 323745 706193. 2443.58 2.64 0.165908 0.143715 3194 22 2793 3129 354671 72544 5.11331 5.11331 -185.075 -5.11331 0 0 926341. 3205.33 0.27 0.08 0.0211762 0.0187014 138 105 0 0 124 31
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 6.63 0.03 7004 1 0.00 -1 -1 29976 -1 -1 15 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66108 32 32 356 305 1 233 79 17 17 289 -1 unnamed_device 2.39 972 0.11 0.00 3.12513 -110.694 -3.12513 3.12513 0.48 0.000320426 0.000280174 0.0500058 0.0432421 40 2909 35 6.99608e+06 220735 706193. 2443.58 2.29 0.134066 0.11515 2538 23 2095 2455 274010 62840 3.9706 3.9706 -149.948 -3.9706 0 0 926341. 3205.33 0.18 0.06 0.0169834 0.0149316 102 86 0 0 89 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 4.96 0.03 7100 1 0.02 -1 -1 30084 -1 -1 15 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66428 32 32 365 283 1 217 79 17 17 289 -1 unnamed_device 0.53 973 0.11 0.00 3.25275 -117.055 -3.25275 3.25275 0.49 0.000333138 0.0002921 0.0493549 0.0430238 40 3081 41 6.99608e+06 220735 706193. 2443.58 2.52 0.142474 0.122203 2530 20 1920 2535 273713 55584 4.51732 4.51732 -156.508 -4.51732 0 0 926341. 3205.33 0.18 0.06 0.0158825 0.0140062 91 31 90 30 32 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 4.97 0.03 7316 1 0.02 -1 -1 30360 -1 -1 21 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66640 31 32 445 338 1 261 84 17 17 289 -1 unnamed_device 1.38 1133 0.14 0.00 3.18065 -112.615 -3.18065 3.18065 0.48 0.000397901 0.000347777 0.0630799 0.0548851 44 3515 31 6.99608e+06 309029 787024. 2723.27 1.59 0.157732 0.13631 2561 22 2550 3292 265721 57292 3.92882 3.92882 -149.155 -3.92882 0 0 997811. 3452.63 0.20 0.06 0.0197033 0.017482 118 50 87 31 62 31
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 5.19 0.02 7120 1 0.01 -1 -1 30256 -1 -1 20 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66112 30 32 376 300 1 228 82 17 17 289 -1 unnamed_device 1.02 1012 0.13 0.00 2.95549 -101.084 -2.95549 2.95549 0.49 0.000343365 0.000303108 0.0573605 0.0498999 40 3125 22 6.99608e+06 294314 706193. 2443.58 2.20 0.135463 0.11663 2638 19 1910 2719 244526 53398 3.88806 3.88806 -139.268 -3.88806 0 0 926341. 3205.33 0.18 0.05 0.015894 0.0141014 102 50 58 30 58 30
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 4.59 0.03 7028 1 0.01 -1 -1 30096 -1 -1 17 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66800 32 32 408 320 1 252 81 17 17 289 -1 unnamed_device 0.54 1069 0.12 0.00 3.59014 -126.042 -3.59014 3.59014 0.48 0.000358472 0.000315007 0.054113 0.0471804 46 3119 26 6.99608e+06 250167 828058. 2865.25 2.02 0.152287 0.132036 2331 21 2292 2788 230662 46021 4.2442 4.2442 -158.968 -4.2442 0 0 1.01997e+06 3529.29 0.20 0.05 0.0188206 0.0167128 107 61 64 32 64 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 3.87 0.02 7128 1 0.01 -1 -1 30160 -1 -1 18 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66596 32 32 406 319 1 253 82 17 17 289 -1 unnamed_device 0.60 1035 0.13 0.00 2.98529 -110.26 -2.98529 2.98529 0.48 0.000376096 0.00033201 0.0607383 0.0530285 50 2749 30 6.99608e+06 264882 902133. 3121.57 1.27 0.146481 0.126665 2295 22 2121 2681 198060 46080 3.47486 3.47486 -140.7 -3.47486 0 0 1.08113e+06 3740.92 0.21 0.05 0.0182556 0.0161894 108 61 63 32 64 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 4.25 0.03 7068 1 0.01 -1 -1 30132 -1 -1 14 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65136 29 32 291 242 1 172 75 17 17 289 -1 unnamed_device 1.06 809 0.09 0.00 2.77194 -98.8031 -2.77194 2.77194 0.48 0.000282626 0.000246233 0.0429181 0.037231 36 2081 28 6.99608e+06 206020 648988. 2245.63 1.29 0.108946 0.0935521 1818 22 1636 2134 182972 37581 3.51211 3.51211 -127.441 -3.51211 0 0 828058. 2865.25 0.16 0.04 0.0142461 0.012572 74 28 58 29 29 29
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 5.84 0.03 6912 1 0.01 -1 -1 29964 -1 -1 14 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65604 32 32 335 291 1 208 78 17 17 289 -1 unnamed_device 2.21 848 0.10 0.00 3.03413 -100.587 -3.03413 3.03413 0.49 0.000306852 0.00026786 0.0459173 0.0395347 48 2143 27 6.99608e+06 206020 865456. 2994.66 1.64 0.131082 0.113165 1790 22 1629 1965 157188 36836 4.0421 4.0421 -132.883 -4.0421 0 0 1.05005e+06 3633.38 0.20 0.04 0.0149367 0.0131605 91 79 0 0 82 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 5.51 0.03 7132 1 0.02 -1 -1 30168 -1 -1 16 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66232 31 32 367 283 1 217 79 17 17 289 -1 unnamed_device 0.57 1153 0.10 0.00 3.21985 -120.764 -3.21985 3.21985 0.52 0.000336532 0.000296479 0.0450359 0.0389541 38 3329 28 6.99608e+06 235451 678818. 2348.85 2.96 0.134874 0.11565 2623 22 2303 3135 318264 65143 4.12882 4.12882 -158.255 -4.12882 0 0 902133. 3121.57 0.17 0.07 0.0208594 0.0184084 91 29 93 31 31 31
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 4.80 0.02 7032 1 0.01 -1 -1 30192 -1 -1 16 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65436 29 32 301 258 1 191 77 17 17 289 -1 unnamed_device 1.59 688 0.10 0.00 2.61559 -84.3242 -2.61559 2.61559 0.49 0.000273296 0.000236629 0.044629 0.0380717 44 2456 37 6.99608e+06 235451 787024. 2723.27 1.30 0.115223 0.0973251 1562 21 1410 1639 125871 29659 3.11316 3.11316 -106.074 -3.11316 0 0 997811. 3452.63 0.19 0.04 0.0131637 0.0115683 82 48 29 29 52 26
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 4.47 0.04 6824 1 0.01 -1 -1 30008 -1 -1 13 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65300 32 32 315 257 1 188 77 17 17 289 -1 unnamed_device 0.56 899 0.11 0.00 2.82874 -107.853 -2.82874 2.82874 0.48 0.000355303 0.000310834 0.0483933 0.0419028 38 2516 43 6.99608e+06 191304 678818. 2348.85 1.98 0.127687 0.109739 2062 22 1988 2551 232016 45496 3.34951 3.34951 -136.945 -3.34951 0 0 902133. 3121.57 0.17 0.05 0.0158193 0.0139447 79 31 64 32 32 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 4.75 0.02 7264 1 0.02 -1 -1 30152 -1 -1 19 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66180 31 32 389 309 1 239 82 17 17 289 -1 unnamed_device 0.98 1206 0.13 0.00 3.26148 -120.959 -3.26148 3.26148 0.54 0.000360762 0.000316821 0.0553927 0.0480239 46 3115 20 6.99608e+06 279598 828058. 2865.25 1.72 0.136946 0.118595 2587 22 2359 3192 288462 55639 3.79025 3.79025 -147.611 -3.79025 0 0 1.01997e+06 3529.29 0.19 0.06 0.0183632 0.0162643 105 60 58 31 62 31
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 6.89 0.02 7060 1 0.02 -1 -1 30128 -1 -1 13 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65616 31 32 310 264 1 194 76 17 17 289 -1 unnamed_device 2.16 798 0.09 0.00 2.61074 -90.2258 -2.61074 2.61074 0.49 0.000286593 0.000247798 0.0429434 0.0372691 38 2922 47 6.99608e+06 191304 678818. 2348.85 2.84 0.125601 0.107152 2163 23 1557 1937 207345 44042 3.50577 3.50577 -125.662 -3.50577 0 0 902133. 3121.57 0.17 0.05 0.0147424 0.0129197 83 49 31 31 53 31
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 5.20 0.03 7160 1 0.01 -1 -1 30236 -1 -1 18 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66216 32 32 384 308 1 232 82 17 17 289 -1 unnamed_device 0.97 1140 0.10 0.00 2.86129 -107.126 -2.86129 2.86129 0.54 0.000337683 0.000296467 0.0443303 0.0384196 40 2996 27 6.99608e+06 264882 706193. 2443.58 2.20 0.127868 0.110016 2642 30 1988 2643 382197 116495 3.70676 3.70676 -142.008 -3.70676 0 0 926341. 3205.33 0.18 0.08 0.0215606 0.0188936 103 56 52 26 64 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 5.88 0.03 7216 1 0.02 -1 -1 30240 -1 -1 21 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66532 31 32 424 341 1 272 84 17 17 289 -1 unnamed_device 0.64 1163 0.14 0.00 3.89347 -133.527 -3.89347 3.89347 0.49 0.000382656 0.000338529 0.0600631 0.0524947 46 3919 32 6.99608e+06 309029 828058. 2865.25 3.19 0.155267 0.133836 2807 22 2633 3617 423231 104100 4.37955 4.37955 -161.308 -4.37955 0 0 1.01997e+06 3529.29 0.19 0.08 0.0189873 0.0167856 122 88 31 31 92 31
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 6.02 0.03 6952 1 0.01 -1 -1 30120 -1 -1 13 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65640 32 32 334 280 1 208 77 17 17 289 -1 unnamed_device 2.33 1116 0.11 0.00 2.58759 -102.574 -2.58759 2.58759 0.51 0.000328142 0.000289651 0.0465862 0.0404417 44 2879 24 6.99608e+06 191304 787024. 2723.27 1.69 0.118801 0.1023 2281 25 1732 2419 203716 40368 2.96367 2.96367 -121.293 -2.96367 0 0 997811. 3452.63 0.19 0.05 0.0170261 0.0150139 88 54 32 32 60 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 4.98 0.03 6940 1 0.01 -1 -1 29964 -1 -1 14 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65668 32 32 340 284 1 212 78 17 17 289 -1 unnamed_device 0.62 859 0.12 0.00 2.68144 -99.4782 -2.68144 2.68144 0.49 0.000310874 0.000271851 0.0510071 0.0440762 40 2879 40 6.99608e+06 206020 706193. 2443.58 2.34 0.137196 0.117116 2460 22 1994 2409 351224 72412 3.45982 3.45982 -133.052 -3.45982 0 0 926341. 3205.33 0.18 0.06 0.0154546 0.0135304 91 60 32 32 62 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 4.31 0.03 7212 1 0.02 -1 -1 30400 -1 -1 18 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66016 32 32 408 320 1 252 82 17 17 289 -1 unnamed_device 0.79 914 0.12 0.00 3.22785 -116.098 -3.22785 3.22785 0.50 0.000357165 0.000312596 0.056182 0.0489658 48 2791 35 6.99608e+06 264882 865456. 2994.66 1.50 0.146555 0.126363 2346 20 2125 2599 229228 50996 4.17762 4.17762 -159.147 -4.17762 0 0 1.05005e+06 3633.38 0.21 0.05 0.0177973 0.0156984 110 49 64 32 64 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 4.66 0.02 7124 1 0.01 -1 -1 30216 -1 -1 21 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66096 29 32 371 297 1 222 82 17 17 289 -1 unnamed_device 1.33 911 0.13 0.00 2.79574 -94.7476 -2.79574 2.79574 0.48 0.000337864 0.00029627 0.0562392 0.0486027 46 2595 23 6.99608e+06 309029 828058. 2865.25 1.37 0.130965 0.112702 1931 22 1900 2564 167527 38062 3.43511 3.43511 -119.075 -3.43511 0 0 1.01997e+06 3529.29 0.20 0.04 0.0165173 0.014608 101 54 56 29 58 29
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 4.48 0.03 7400 1 0.02 -1 -1 30384 -1 -1 22 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66884 32 32 470 382 1 309 86 17 17 289 -1 unnamed_device 0.63 1544 0.14 0.00 3.64737 -137.436 -3.64737 3.64737 0.49 0.000388399 0.000342634 0.0639502 0.0555945 46 3688 25 6.99608e+06 323745 828058. 2865.25 1.83 0.15656 0.135306 3020 24 3114 3683 328003 64017 4.76344 4.76344 -183.247 -4.76344 0 0 1.01997e+06 3529.29 0.19 0.07 0.0211648 0.0186844 140 117 0 0 128 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 4.10 0.02 6968 1 0.01 -1 -1 29976 -1 -1 11 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65124 31 32 261 214 1 145 74 17 17 289 -1 unnamed_device 0.82 516 0.08 0.00 2.42505 -79.0619 -2.42505 2.42505 0.49 0.000275468 0.000240102 0.0379281 0.0330143 42 2373 35 6.99608e+06 161872 744469. 2576.02 1.36 0.103893 0.089159 1560 31 1604 2468 281392 93384 2.81017 2.81017 -108.866 -2.81017 0 0 949917. 3286.91 0.18 0.06 0.0164824 0.0144299 58 -1 85 31 0 0
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 6.46 0.02 7048 1 0.01 -1 -1 30068 -1 -1 21 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66228 32 32 419 339 1 263 85 17 17 289 -1 unnamed_device 2.73 1167 0.13 0.00 3.87423 -131.681 -3.87423 3.87423 0.48 0.000369011 0.000323411 0.0574912 0.0500735 48 3264 24 6.99608e+06 309029 865456. 2994.66 1.73 0.14377 0.1245 2677 21 2464 3183 320544 69746 5.2017 5.2017 -178.765 -5.2017 0 0 1.05005e+06 3633.38 0.20 0.07 0.0199206 0.0176852 118 89 28 28 92 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 4.46 0.02 7052 1 0.02 -1 -1 30004 -1 -1 16 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66372 32 32 377 319 1 253 80 17 17 289 -1 unnamed_device 0.87 1268 0.10 0.00 3.53952 -132.568 -3.53952 3.53952 0.49 0.000339096 0.000299142 0.0426252 0.0371008 44 3470 34 6.99608e+06 235451 787024. 2723.27 1.65 0.128727 0.110862 2584 23 2689 3462 277251 60690 4.49909 4.49909 -172.179 -4.49909 0 0 997811. 3452.63 0.20 0.06 0.0172685 0.0152281 110 93 0 0 96 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 5.13 0.02 7164 1 0.01 -1 -1 30208 -1 -1 19 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66180 32 32 402 317 1 247 83 17 17 289 -1 unnamed_device 0.83 1149 0.13 0.00 2.82874 -111.093 -2.82874 2.82874 0.49 0.0003599 0.000316834 0.0563148 0.0488489 40 3241 27 6.99608e+06 279598 706193. 2443.58 2.28 0.144032 0.124079 2946 24 2292 2971 320466 64173 3.66741 3.66741 -147.45 -3.66741 0 0 926341. 3205.33 0.18 0.07 0.020155 0.0177749 107 59 61 32 64 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 7.01 0.02 7412 1 0.03 -1 -1 30452 -1 -1 22 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66872 32 32 501 383 1 312 86 17 17 289 -1 unnamed_device 0.77 1437 0.15 0.00 3.96983 -147.166 -3.96983 3.96983 0.49 0.000425452 0.000376537 0.0695103 0.0607303 38 4311 45 6.99608e+06 323745 678818. 2348.85 4.18 0.19192 0.165331 3338 28 3713 4257 492729 152820 5.3597 5.3597 -198.3 -5.3597 0 0 902133. 3121.57 0.17 0.11 0.0264618 0.0234046 141 81 64 32 96 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 5.15 0.02 6788 1 0.00 -1 -1 30068 -1 -1 13 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65152 30 32 249 232 1 154 75 17 17 289 -1 unnamed_device 1.81 667 0.08 0.00 2.25155 -77.6045 -2.25155 2.25155 0.48 0.000240042 0.000206631 0.035649 0.0304958 38 1785 43 6.99608e+06 191304 678818. 2348.85 1.53 0.0990994 0.084198 1428 21 866 884 99530 22946 2.63502 2.63502 -96.5743 -2.63502 0 0 902133. 3121.57 0.17 0.03 0.0109818 0.0096297 65 51 0 0 53 30
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 6.31 0.02 6928 1 0.01 -1 -1 29952 -1 -1 14 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65512 30 32 299 247 1 169 76 17 17 289 -1 unnamed_device 2.77 857 0.10 0.00 2.78909 -100.431 -2.78909 2.78909 0.48 0.000289167 0.000252817 0.0443523 0.0385292 34 2461 29 6.99608e+06 206020 618332. 2139.56 1.67 0.115168 0.098508 2120 25 1802 2652 297893 60623 3.54782 3.54782 -138.05 -3.54782 0 0 787024. 2723.27 0.15 0.06 0.0157636 0.0137945 73 29 60 30 30 30
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 4.56 0.03 6868 1 0.01 -1 -1 29952 -1 -1 12 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65208 32 32 315 257 1 192 76 17 17 289 -1 unnamed_device 0.15 1011 0.09 0.00 2.73464 -111.143 -2.73464 2.73464 0.48 0.000305329 0.000268105 0.0417008 0.0364316 40 2876 26 6.99608e+06 176588 706193. 2443.58 2.48 0.115272 0.0991931 2674 22 2099 3318 417445 79823 3.87401 3.87401 -156.052 -3.87401 0 0 926341. 3205.33 0.17 0.07 0.015059 0.0132513 80 31 64 32 32 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 3.87 0.03 6960 1 0.01 -1 -1 30232 -1 -1 18 25 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65016 25 32 259 222 1 151 75 17 17 289 -1 unnamed_device 0.56 538 0.10 0.00 2.5129 -74.0733 -2.5129 2.5129 0.49 0.000249272 0.000216088 0.0429526 0.0369758 38 1854 42 6.99608e+06 264882 678818. 2348.85 1.44 0.118435 0.10072 1299 23 1192 1628 108297 25114 2.79107 2.79107 -93.6274 -2.79107 0 0 902133. 3121.57 0.17 0.03 0.0124635 0.010861 67 19 50 25 25 25
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 4.59 0.03 7096 1 0.02 -1 -1 30336 -1 -1 20 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66368 32 32 433 347 1 281 84 17 17 289 -1 unnamed_device 0.72 1188 0.13 0.00 3.13175 -114.152 -3.13175 3.13175 0.50 0.000395259 0.000337515 0.0598879 0.0521473 58 3118 43 6.99608e+06 294314 997811. 3452.63 1.72 0.161012 0.13935 2472 23 2464 3446 320742 69407 4.36102 4.36102 -149.681 -4.36102 0 0 1.25153e+06 4330.55 0.24 0.06 0.0202067 0.0178995 125 84 32 32 94 32
+ fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 4.18 0.03 7156 1 0.02 -1 -1 30204 -1 -1 22 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65952 31 32 423 341 1 270 85 17 17 289 -1 unnamed_device 0.71 1133 0.14 0.00 3.37098 -117.979 -3.37098 3.37098 0.48 0.000377943 0.000333246 0.0603906 0.0526829 44 3650 28 6.99608e+06 323745 787024. 2723.27 1.46 0.148094 0.128093 2548 21 2465 3247 258845 56178 4.3287 4.3287 -153.924 -4.3287 0 0 997811. 3452.63 0.19 0.06 0.0189266 0.0168168 121 88 29 29 93 31
+ fixed_k6_frac_N8_22nm.xml mult_001.v common 6.02 0.02 6924 14 0.21 -1 -1 32976 -1 -1 22 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65480 32 32 280 312 1 208 86 17 17 289 -1 unnamed_device 1.99 1048 0.10 0.00 6.84966 -135.102 -6.84966 6.84966 0.48 0.000371704 0.000322151 0.0420932 0.0352559 46 2969 49 6.79088e+06 296384 828058. 2865.25 1.87 0.152569 0.13054 2184 19 1307 3569 169845 43143 7.63368 7.63368 -155.662 -7.63368 0 0 1.01997e+06 3529.29 0.19 0.05 0.0205713 0.0186607 136 185 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_002.v common 5.81 0.02 7048 14 0.32 -1 -1 32256 -1 -1 21 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65540 30 32 277 309 1 212 83 17 17 289 -1 unnamed_device 1.44 998 0.12 0.00 6.79583 -131.44 -6.79583 6.79583 0.48 0.000373471 0.000323386 0.0542288 0.0458837 46 2769 27 6.79088e+06 282912 828058. 2865.25 2.06 0.148371 0.127003 2160 19 1322 3555 168345 41476 6.94909 6.94909 -146.617 -6.94909 0 0 1.01997e+06 3529.29 0.19 0.05 0.0191041 0.0172412 133 186 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_003.v common 5.41 0.02 6964 11 0.17 -1 -1 32508 -1 -1 20 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65184 32 32 274 306 1 202 84 17 17 289 -1 unnamed_device 1.54 1308 0.12 0.00 5.53918 -122.799 -5.53918 5.53918 0.49 0.000359774 0.000310589 0.0511488 0.0433672 38 3375 22 6.79088e+06 269440 678818. 2348.85 1.76 0.139784 0.119892 2668 16 1201 3765 196603 44196 6.16568 6.16568 -141.832 -6.16568 0 0 902133. 3121.57 0.17 0.05 0.0168679 0.0152522 137 179 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_004.v common 4.99 0.03 6972 12 0.28 -1 -1 32676 -1 -1 22 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65424 29 32 269 301 1 193 83 17 17 289 -1 unnamed_device 1.45 1133 0.11 0.00 6.19718 -120.495 -6.19718 6.19718 0.55 0.000370161 0.000322697 0.047357 0.0398713 30 3500 45 6.79088e+06 296384 556674. 1926.21 1.31 0.122306 0.103909 2625 20 1364 3790 195871 46416 6.45892 6.45892 -141.435 -6.45892 0 0 706193. 2443.58 0.14 0.05 0.0195547 0.0175286 136 180 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_005.v common 6.43 0.02 6948 13 0.30 -1 -1 33020 -1 -1 25 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65936 32 32 317 349 1 254 89 17 17 289 -1 unnamed_device 1.94 1453 0.13 0.00 6.92451 -145.832 -6.92451 6.92451 0.48 0.000426387 0.000370541 0.0545648 0.0460974 38 3703 22 6.79088e+06 336800 678818. 2348.85 2.23 0.163244 0.139471 3131 16 1522 3988 211453 48194 7.46491 7.46491 -171.406 -7.46491 0 0 902133. 3121.57 0.17 0.05 0.0198855 0.0180209 161 222 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_006.v common 6.02 0.02 6944 12 0.23 -1 -1 32488 -1 -1 20 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65636 32 32 299 331 1 224 84 17 17 289 -1 unnamed_device 1.79 1312 0.14 0.00 6.09426 -130.423 -6.09426 6.09426 0.55 0.000378233 0.000325059 0.0630576 0.053377 40 3369 49 6.79088e+06 269440 706193. 2443.58 1.98 0.181769 0.155818 3019 19 1568 4230 260517 59605 6.38057 6.38057 -151.902 -6.38057 0 0 926341. 3205.33 0.18 0.06 0.0202767 0.0182632 146 204 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_007.v common 6.15 0.02 6716 12 0.15 -1 -1 32376 -1 -1 21 27 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64972 27 32 210 242 1 167 80 17 17 289 -1 unnamed_device 1.48 1024 0.11 0.00 5.61409 -107.53 -5.61409 5.61409 0.48 0.000288914 0.000249376 0.0478025 0.0404487 36 2914 22 6.79088e+06 282912 648988. 2245.63 2.59 0.11988 0.102008 2284 17 1143 2996 177297 39849 5.86469 5.86469 -125.918 -5.86469 0 0 828058. 2865.25 0.16 0.04 0.0135767 0.0121836 101 125 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_008.v common 5.62 0.03 6968 11 0.15 -1 -1 32640 -1 -1 17 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65248 31 32 264 296 1 191 80 17 17 289 -1 unnamed_device 1.42 1051 0.09 0.00 5.66443 -116.943 -5.66443 5.66443 0.49 0.000330541 0.000285483 0.0372515 0.0313542 38 2978 31 6.79088e+06 229024 678818. 2348.85 2.14 0.127554 0.108932 2526 17 1149 3252 192416 42175 5.91503 5.91503 -134.013 -5.91503 0 0 902133. 3121.57 0.17 0.05 0.0165004 0.0149056 117 171 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_009.v common 5.85 0.03 6772 12 0.13 -1 -1 32168 -1 -1 18 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65080 31 32 234 266 1 191 81 17 17 289 -1 unnamed_device 2.17 897 0.10 0.00 5.52799 -111.372 -5.52799 5.52799 0.49 0.000307129 0.000264821 0.0437631 0.0371705 40 2452 38 6.79088e+06 242496 706193. 2443.58 1.63 0.12838 0.109754 2271 24 1299 3078 243027 65875 5.86807 5.86807 -136.003 -5.86807 0 0 926341. 3205.33 0.18 0.06 0.0188545 0.0166945 111 141 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_010.v common 4.96 0.02 6748 13 0.18 -1 -1 32612 -1 -1 15 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65704 32 32 253 285 1 186 79 17 17 289 -1 unnamed_device 1.18 938 0.11 0.00 5.95777 -129.496 -5.95777 5.95777 0.49 0.00032664 0.000281946 0.0466276 0.0396911 52 2409 30 6.79088e+06 202080 926341. 3205.33 1.55 0.131288 0.113276 1973 26 1081 2913 329084 158054 6.58427 6.58427 -150.488 -6.58427 0 0 1.14541e+06 3963.36 0.22 0.09 0.0211882 0.0189609 106 158 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_011.v common 6.18 0.04 6764 12 0.13 -1 -1 32468 -1 -1 16 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64656 30 32 217 249 1 159 78 17 17 289 -1 unnamed_device 1.12 835 0.09 0.00 6.09426 -116.928 -6.09426 6.09426 0.48 0.000288712 0.000247707 0.0411192 0.0345406 34 3353 50 6.79088e+06 215552 618332. 2139.56 3.03 0.129935 0.110398 2213 24 1098 2861 324886 111358 6.72076 6.72076 -144.316 -6.72076 0 0 787024. 2723.27 0.16 0.07 0.0170908 0.0152126 93 126 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_012.v common 5.34 0.03 6776 12 0.10 -1 -1 32276 -1 -1 16 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64440 32 32 227 259 1 169 80 17 17 289 -1 unnamed_device 1.68 759 0.10 0.00 5.44959 -121.499 -5.44959 5.44959 0.48 0.000293228 0.000251934 0.0425163 0.0359424 48 2385 41 6.79088e+06 215552 865456. 2994.66 1.58 0.129958 0.111129 1875 16 965 2512 149733 37401 5.95079 5.95079 -143.732 -5.95079 0 0 1.05005e+06 3633.38 0.21 0.04 0.0136284 0.0122538 94 132 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_013.v common 5.68 0.02 6972 13 0.20 -1 -1 32612 -1 -1 22 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65704 32 32 306 338 1 223 86 17 17 289 -1 unnamed_device 1.49 1225 0.11 0.00 6.8888 -144.777 -6.8888 6.8888 0.49 0.000430985 0.000377853 0.0513024 0.0435438 38 3263 32 6.79088e+06 296384 678818. 2348.85 1.95 0.178037 0.153971 2769 16 1306 3630 199164 44744 7.1394 7.1394 -163.428 -7.1394 0 0 902133. 3121.57 0.17 0.05 0.0190111 0.0171575 148 211 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_014.v common 6.46 0.03 6988 14 0.25 -1 -1 33040 -1 -1 21 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65816 32 32 302 334 1 229 85 17 17 289 -1 unnamed_device 1.59 1214 0.14 0.00 7.64414 -151.875 -7.64414 7.64414 0.49 0.000394867 0.000341286 0.0591411 0.050039 46 3240 28 6.79088e+06 282912 828058. 2865.25 2.59 0.164788 0.141044 2419 18 1287 3547 189487 44978 7.89475 7.89475 -166.951 -7.89475 0 0 1.01997e+06 3529.29 0.19 0.05 0.0206274 0.0186896 151 207 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_015.v common 5.28 0.02 6752 11 0.14 -1 -1 32304 -1 -1 20 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64592 29 32 238 270 1 183 81 17 17 289 -1 unnamed_device 1.36 964 0.11 0.00 5.70368 -111.143 -5.70368 5.70368 0.48 0.000307399 0.000264669 0.048501 0.0406415 36 2882 31 6.79088e+06 269440 648988. 2245.63 1.92 0.131916 0.111783 2304 19 1145 2681 175960 41829 6.20488 6.20488 -132.782 -6.20488 0 0 828058. 2865.25 0.16 0.04 0.0157693 0.0141581 111 149 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_016.v common 5.58 0.03 6896 12 0.23 -1 -1 32748 -1 -1 21 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65316 32 32 306 338 1 234 85 17 17 289 -1 unnamed_device 1.59 1447 0.15 0.00 7.01061 -143.811 -7.01061 7.01061 0.50 0.000667213 0.000573155 0.0674636 0.0571525 46 3625 17 6.79088e+06 282912 828058. 2865.25 1.68 0.165315 0.141828 2993 17 1471 4129 232639 50752 7.13591 7.13591 -160.243 -7.13591 0 0 1.01997e+06 3529.29 0.20 0.06 0.0218385 0.019749 146 211 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_017.v common 5.38 0.03 6964 13 0.21 -1 -1 32572 -1 -1 21 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65204 32 32 311 343 1 230 85 17 17 289 -1 unnamed_device 1.72 1307 0.13 0.00 6.8496 -140.758 -6.8496 6.8496 0.49 0.000403763 0.000351245 0.0605218 0.0513616 46 3054 18 6.79088e+06 282912 828058. 2865.25 1.44 0.156317 0.134453 2519 16 1177 3332 172787 39016 7.3116 7.3116 -158.933 -7.3116 0 0 1.01997e+06 3529.29 0.19 0.05 0.0192034 0.0173901 144 216 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_018.v common 4.74 0.04 6760 12 0.14 -1 -1 32568 -1 -1 17 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65048 32 32 230 262 1 181 81 17 17 289 -1 unnamed_device 1.59 1084 0.10 0.00 5.82898 -137.453 -5.82898 5.82898 0.49 0.000304575 0.000261951 0.0438572 0.0371124 30 3316 49 6.79088e+06 229024 556674. 1926.21 1.13 0.104447 0.0895098 2417 15 1006 2620 157546 34768 6.20488 6.20488 -157.988 -6.20488 0 0 706193. 2443.58 0.14 0.04 0.0135949 0.0122444 105 135 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_019.v common 5.16 0.01 6612 10 0.11 -1 -1 32288 -1 -1 13 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65036 30 32 176 208 1 138 75 17 17 289 -1 unnamed_device 2.06 575 0.08 0.00 4.17831 -97.6506 -4.17831 4.17831 0.49 0.00023628 0.000199522 0.0337299 0.0282103 46 1619 18 6.79088e+06 175136 828058. 2865.25 1.10 0.0858102 0.0729583 1172 13 722 1650 79668 20905 4.42891 4.42891 -108.692 -4.42891 0 0 1.01997e+06 3529.29 0.19 0.02 0.00914524 0.00821642 68 85 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_020.v common 6.50 0.02 6772 13 0.18 -1 -1 32392 -1 -1 17 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65588 31 32 226 258 1 171 80 17 17 289 -1 unnamed_device 1.63 1053 0.09 0.00 6.33372 -134.693 -6.33372 6.33372 0.50 0.000308607 0.000266143 0.03892 0.0327967 36 2872 50 6.79088e+06 229024 648988. 2245.63 2.80 0.135481 0.115143 2314 18 1002 2492 165892 38978 6.70962 6.70962 -152.767 -6.70962 0 0 828058. 2865.25 0.17 0.05 0.0177804 0.0159625 99 133 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_021.v common 6.09 0.02 6920 13 0.23 -1 -1 32524 -1 -1 20 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65376 32 32 302 334 1 218 84 17 17 289 -1 unnamed_device 1.05 1192 0.13 0.00 6.62352 -140.048 -6.62352 6.62352 0.48 0.00040609 0.000332496 0.0590914 0.0498069 38 3643 33 6.79088e+06 269440 678818. 2348.85 2.87 0.166504 0.141541 2639 18 1457 4074 203957 47691 6.87412 6.87412 -155.853 -6.87412 0 0 902133. 3121.57 0.17 0.05 0.0202133 0.018235 142 207 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_022.v common 5.97 0.02 7056 13 0.23 -1 -1 32776 -1 -1 19 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65540 32 32 299 331 1 219 83 17 17 289 -1 unnamed_device 1.44 1334 0.10 0.00 6.46246 -136.461 -6.46246 6.46246 0.48 0.000382139 0.00033057 0.0444768 0.0373758 38 3311 33 6.79088e+06 255968 678818. 2348.85 2.28 0.15741 0.134765 2889 17 1351 3742 221280 48432 6.96366 6.96366 -158.42 -6.96366 0 0 902133. 3121.57 0.18 0.05 0.0198792 0.0179617 142 204 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_023.v common 4.43 0.03 6524 9 0.06 -1 -1 32008 -1 -1 16 26 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65008 26 32 149 181 1 118 74 17 17 289 -1 unnamed_device 1.72 601 0.08 0.00 3.80574 -77.0911 -3.80574 3.80574 0.49 0.000212724 0.000170744 0.0328547 0.0271866 28 1797 22 6.79088e+06 215552 531479. 1839.03 0.80 0.0629886 0.0526041 1418 14 614 1379 86321 20838 3.93104 3.93104 -90.9108 -3.93104 0 0 648988. 2245.63 0.17 0.02 0.0080509 0.00718746 64 66 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_024.v common 6.04 0.02 6844 13 0.31 -1 -1 32548 -1 -1 22 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65628 32 32 304 336 1 219 86 17 17 289 -1 unnamed_device 1.76 1128 0.14 0.00 6.8888 -134.402 -6.8888 6.8888 0.49 0.000388953 0.000336017 0.059043 0.0500634 46 3234 27 6.79088e+06 296384 828058. 2865.25 1.97 0.164863 0.141018 2351 18 1272 3478 166327 40348 7.1394 7.1394 -151.604 -7.1394 0 0 1.01997e+06 3529.29 0.19 0.04 0.0193295 0.0174821 136 209 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_025.v common 5.26 0.02 6528 8 0.09 -1 -1 31976 -1 -1 17 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65244 32 32 155 187 1 126 81 17 17 289 -1 unnamed_device 2.20 552 0.08 0.00 3.68044 -75.9887 -3.68044 3.68044 0.48 0.000241248 0.000204033 0.0303676 0.0254098 38 1563 17 6.79088e+06 229024 678818. 2348.85 1.06 0.075699 0.0638939 1235 14 583 1193 64628 16905 4.01714 4.01714 -90.8126 -4.01714 0 0 902133. 3121.57 0.21 0.02 0.00810275 0.00725985 63 60 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_026.v common 5.59 0.02 6928 15 0.17 -1 -1 32676 -1 -1 18 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64968 32 32 253 285 1 199 82 17 17 289 -1 unnamed_device 1.88 1191 0.12 0.00 7.4405 -150.369 -7.4405 7.4405 0.48 0.000348444 0.000303016 0.0529574 0.0450016 40 2955 28 6.79088e+06 242496 706193. 2443.58 1.58 0.14289 0.122877 2795 17 1306 3492 222852 50149 7.8164 7.8164 -172.728 -7.8164 0 0 926341. 3205.33 0.18 0.05 0.0180126 0.0162465 118 158 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_027.v common 8.86 0.03 6952 12 0.31 -1 -1 32636 -1 -1 24 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65560 32 32 309 341 1 217 88 17 17 289 -1 unnamed_device 1.69 1124 0.13 0.00 6.00467 -124.048 -6.00467 6.00467 0.48 0.000398978 0.000335586 0.0556556 0.0462857 38 3875 50 6.79088e+06 323328 678818. 2348.85 4.90 0.18184 0.153253 2796 24 1703 5294 303653 68752 6.65564 6.65564 -148.679 -6.65564 0 0 902133. 3121.57 0.17 0.07 0.0244916 0.0217756 148 214 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_028.v common 6.89 0.02 7048 13 0.23 -1 -1 32616 -1 -1 21 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65220 32 32 289 321 1 210 85 17 17 289 -1 unnamed_device 1.47 964 0.10 0.00 6.81035 -129.71 -6.81035 6.81035 0.48 0.000373521 0.000320984 0.042873 0.0361275 38 3144 46 6.79088e+06 282912 678818. 2348.85 3.24 0.152761 0.129802 2142 20 1332 3589 176260 45681 7.06095 7.06095 -148.983 -7.06095 0 0 902133. 3121.57 0.17 0.05 0.0199812 0.0179696 137 194 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_029.v common 5.78 0.03 6724 12 0.14 -1 -1 32760 -1 -1 18 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65008 32 32 239 271 1 179 82 17 17 289 -1 unnamed_device 1.46 1011 0.08 0.00 5.27734 -113.767 -5.27734 5.27734 0.48 0.000308686 0.000266108 0.034939 0.0295842 36 2897 28 6.79088e+06 242496 648988. 2245.63 2.35 0.11863 0.101063 2408 19 1101 2780 176719 43148 5.73934 5.73934 -137.609 -5.73934 0 0 828058. 2865.25 0.16 0.05 0.0157282 0.0140915 107 144 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_030.v common 6.70 0.01 6716 11 0.15 -1 -1 32520 -1 -1 20 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65172 30 32 213 245 1 164 82 17 17 289 -1 unnamed_device 2.24 918 0.10 0.00 5.03444 -110.86 -5.03444 5.03444 0.48 0.00028137 0.000241885 0.0407895 0.0344079 36 2573 23 6.79088e+06 269440 648988. 2245.63 2.48 0.113945 0.0966574 2028 17 960 2305 137237 31436 5.36338 5.36338 -127.806 -5.36338 0 0 828058. 2865.25 0.16 0.04 0.0131642 0.0118052 97 122 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_031.v common 6.56 0.03 6788 11 0.12 -1 -1 32588 -1 -1 19 28 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64952 28 32 221 253 1 177 79 17 17 289 -1 unnamed_device 1.13 844 0.13 0.00 5.40613 -106.303 -5.40613 5.40613 0.48 0.000510579 0.00043984 0.0539139 0.0451967 36 2724 38 6.79088e+06 255968 648988. 2245.63 3.40 0.139494 0.118376 2032 19 1228 3192 184439 44141 5.81425 5.81425 -125.686 -5.81425 0 0 828058. 2865.25 0.16 0.04 0.0150659 0.0134461 107 134 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_032.v common 8.48 0.03 6712 12 0.14 -1 -1 32448 -1 -1 19 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65396 32 32 273 305 1 207 83 17 17 289 -1 unnamed_device 1.87 1153 0.12 0.00 5.78973 -135.565 -5.78973 5.78973 0.48 0.000347681 0.000301313 0.0528176 0.0445157 36 3997 41 6.79088e+06 255968 648988. 2245.63 4.49 0.16152 0.136237 2917 17 1465 3510 214037 49331 6.24403 6.24403 -160.664 -6.24403 0 0 828058. 2865.25 0.16 0.05 0.0167766 0.0148789 118 178 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_033.v common 4.54 0.03 6768 11 0.12 -1 -1 32920 -1 -1 18 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65228 31 32 238 270 1 179 81 17 17 289 -1 unnamed_device 1.32 1079 0.09 0.00 5.48874 -127.285 -5.48874 5.48874 0.48 0.000325278 0.000267434 0.0396195 0.0330407 30 2868 30 6.79088e+06 242496 556674. 1926.21 1.25 0.0915102 0.077299 2365 18 1196 3022 164528 37937 5.70014 5.70014 -143.761 -5.70014 0 0 706193. 2443.58 0.14 0.04 0.0153565 0.0137484 107 145 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_034.v common 4.90 0.02 6812 10 0.13 -1 -1 32452 -1 -1 18 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65088 29 32 221 253 1 159 79 17 17 289 -1 unnamed_device 1.20 950 0.08 0.00 5.07702 -106.622 -5.07702 5.07702 0.50 0.000293516 0.000251262 0.033852 0.0286418 34 2552 49 6.79088e+06 242496 618332. 2139.56 1.68 0.134544 0.115817 2127 17 854 2402 161272 36153 5.36333 5.36333 -124.689 -5.36333 0 0 787024. 2723.27 0.16 0.04 0.0143467 0.0128394 103 132 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_035.v common 13.45 0.03 7152 13 0.40 -1 -1 33036 -1 -1 22 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66080 32 32 333 365 1 237 86 17 17 289 -1 unnamed_device 1.45 1289 0.13 0.00 6.92457 -146.67 -6.92457 6.92457 0.47 0.000420895 0.000365449 0.0603554 0.0515218 38 4168 48 6.79088e+06 296384 678818. 2348.85 9.59 0.199186 0.16962 2888 17 1495 4631 279851 67941 7.38657 7.38657 -170.915 -7.38657 0 0 902133. 3121.57 0.17 0.06 0.0215887 0.0194625 162 238 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_036.v common 5.71 0.02 7016 13 0.29 -1 -1 33320 -1 -1 22 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65608 32 32 297 329 1 232 86 17 17 289 -1 unnamed_device 1.37 1225 0.14 0.00 6.63471 -143.887 -6.63471 6.63471 0.49 0.000386536 0.00033442 0.0609212 0.0517126 46 3207 45 6.79088e+06 296384 828058. 2865.25 1.96 0.193452 0.166797 2587 17 1297 3557 192518 44615 6.88531 6.88531 -159.952 -6.88531 0 0 1.01997e+06 3529.29 0.21 0.05 0.0203451 0.0184728 153 202 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_037.v common 5.00 0.03 6708 12 0.12 -1 -1 32204 -1 -1 18 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64708 31 32 234 266 1 170 81 17 17 289 -1 unnamed_device 1.63 980 0.13 0.00 5.70368 -125.768 -5.70368 5.70368 0.52 0.000525388 0.000450337 0.0566943 0.0480852 40 2389 21 6.79088e+06 242496 706193. 2443.58 1.26 0.134414 0.11502 2274 18 1064 2912 194295 42414 6.04038 6.04038 -139.574 -6.04038 0 0 926341. 3205.33 0.18 0.04 0.0152074 0.0136123 102 141 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_038.v common 7.66 0.02 7020 12 0.22 -1 -1 32748 -1 -1 22 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65164 31 32 310 342 1 215 85 17 17 289 -1 unnamed_device 1.52 1200 0.12 0.00 6.08302 -124.13 -6.08302 6.08302 0.57 0.000428005 0.000348376 0.0510429 0.0426523 38 4055 42 6.79088e+06 296384 678818. 2348.85 3.85 0.169366 0.143023 2948 20 1710 5415 301204 68986 6.49812 6.49812 -148.643 -6.49812 0 0 902133. 3121.57 0.17 0.06 0.02217 0.0198134 148 217 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_039.v common 5.22 0.03 7060 14 0.29 -1 -1 32844 -1 -1 21 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65504 31 32 284 316 1 219 84 17 17 289 -1 unnamed_device 1.05 1229 0.11 0.00 6.96377 -142.779 -6.96377 6.96377 0.48 0.000395312 0.000333878 0.04872 0.0411541 38 3692 33 6.79088e+06 282912 678818. 2348.85 1.95 0.152566 0.130695 2790 17 1365 3697 211385 47619 7.34737 7.34737 -163.505 -7.34737 0 0 902133. 3121.57 0.17 0.05 0.0189308 0.0171234 146 191 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_040.v common 5.82 0.02 7120 13 0.23 -1 -1 32668 -1 -1 20 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65164 31 32 271 303 1 210 83 17 17 289 -1 unnamed_device 1.91 1052 0.12 0.00 6.79578 -137.621 -6.79578 6.79578 0.51 0.00036085 0.000312347 0.0541057 0.0459814 48 2947 26 6.79088e+06 269440 865456. 2994.66 1.62 0.150989 0.129792 2546 22 1419 3686 254254 63088 7.04638 7.04638 -156.145 -7.04638 0 0 1.05005e+06 3633.38 0.21 0.06 0.0209497 0.0187544 124 178 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_041.v common 5.07 0.02 7092 12 0.18 -1 -1 32688 -1 -1 21 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65428 31 32 280 312 1 202 84 17 17 289 -1 unnamed_device 1.02 1014 0.16 0.00 6.09077 -119.55 -6.09077 6.09077 0.51 0.000446306 0.000384311 0.0731645 0.0617455 46 2878 24 6.79088e+06 282912 828058. 2865.25 1.78 0.170686 0.146143 2084 14 1091 3228 161123 39008 6.21607 6.21607 -134.747 -6.21607 0 0 1.01997e+06 3529.29 0.19 0.04 0.0161543 0.0146981 133 187 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_042.v common 5.72 0.02 6968 12 0.16 -1 -1 32544 -1 -1 16 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65388 32 32 264 296 1 190 80 17 17 289 -1 unnamed_device 1.39 907 0.10 0.00 5.70363 -112.89 -5.70363 5.70363 0.49 0.000330899 0.000284606 0.0456309 0.0387749 40 2421 33 6.79088e+06 215552 706193. 2443.58 2.19 0.139491 0.118971 2264 19 1332 3445 230622 56788 5.95423 5.95423 -138.694 -5.95423 0 0 926341. 3205.33 0.18 0.06 0.0186719 0.0164228 114 169 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_043.v common 6.61 0.03 7240 14 0.37 -1 -1 32572 -1 -1 23 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65996 32 32 339 371 1 254 87 17 17 289 -1 unnamed_device 1.62 1313 0.14 0.00 6.80697 -140.382 -6.80697 6.80697 0.55 0.000441871 0.000382662 0.0591879 0.0500229 48 3793 32 6.79088e+06 309856 865456. 2994.66 2.28 0.231971 0.20276 3129 18 1596 4579 288324 66800 7.45799 7.45799 -163.256 -7.45799 0 0 1.05005e+06 3633.38 0.24 0.08 0.0306998 0.0276742 168 244 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_044.v common 7.36 0.02 6788 11 0.15 -1 -1 32456 -1 -1 18 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65288 31 32 246 278 1 185 81 17 17 289 -1 unnamed_device 1.70 928 0.11 0.00 5.86474 -120.2 -5.86474 5.86474 0.50 0.000324477 0.000279187 0.0458945 0.038996 36 3180 41 6.79088e+06 242496 648988. 2245.63 3.56 0.144013 0.122209 2365 18 1271 3362 206912 49168 6.20488 6.20488 -141.422 -6.20488 0 0 828058. 2865.25 0.16 0.05 0.0160729 0.0144133 114 153 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_045.v common 6.11 0.02 7020 13 0.35 -1 -1 32644 -1 -1 20 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65344 31 32 268 300 1 190 83 17 17 289 -1 unnamed_device 1.46 940 0.12 0.00 6.38406 -118.384 -6.38406 6.38406 0.48 0.000357256 0.000307268 0.0539235 0.0453419 46 2639 35 6.79088e+06 269440 828058. 2865.25 2.37 0.15353 0.131192 1865 16 1033 2946 146824 36743 6.72076 6.72076 -134.86 -6.72076 0 0 1.01997e+06 3529.29 0.19 0.04 0.0169119 0.0153351 133 175 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_046.v common 8.39 0.02 7044 12 0.24 -1 -1 32836 -1 -1 24 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66308 32 32 318 350 1 218 88 17 17 289 -1 unnamed_device 2.06 1213 0.13 0.00 6.07188 -130.264 -6.07188 6.07188 0.48 0.000406626 0.000341718 0.0576577 0.048472 38 3785 34 6.79088e+06 323328 678818. 2348.85 3.97 0.177667 0.150625 2889 30 1472 4528 409400 153813 6.07188 6.07188 -143.972 -6.07188 0 0 902133. 3121.57 0.17 0.11 0.0300029 0.0268071 155 223 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_047.v common 4.77 0.03 6932 13 0.21 -1 -1 32676 -1 -1 22 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65040 32 32 273 305 1 196 86 17 17 289 -1 unnamed_device 1.09 950 0.12 0.00 6.65929 -130.655 -6.65929 6.65929 0.48 0.000356824 0.000307871 0.052092 0.0442562 48 2597 32 6.79088e+06 296384 865456. 2994.66 1.49 0.146965 0.126496 2133 26 1224 3492 353031 160469 6.78459 6.78459 -145.583 -6.78459 0 0 1.05005e+06 3633.38 0.20 0.09 0.022866 0.0204295 130 178 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_048.v common 6.05 0.02 6944 13 0.18 -1 -1 32660 -1 -1 17 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65300 32 32 269 301 1 195 81 17 17 289 -1 unnamed_device 2.14 983 0.14 0.00 6.3191 -124.775 -6.3191 6.3191 0.51 0.000367614 0.000298221 0.0597417 0.049928 46 2451 21 6.79088e+06 229024 828058. 2865.25 1.62 0.146698 0.124988 2076 16 1142 3089 162865 39628 6.53399 6.53399 -145.498 -6.53399 0 0 1.01997e+06 3529.29 0.23 0.06 0.0220725 0.0198138 118 174 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_049.v common 6.72 0.03 6920 12 0.24 -1 -1 33160 -1 -1 24 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65700 32 32 298 330 1 223 88 17 17 289 -1 unnamed_device 1.98 1096 0.12 0.00 6.50592 -133.701 -6.50592 6.50592 0.49 0.000397763 0.000344019 0.0521096 0.0441521 40 2974 19 6.79088e+06 323328 706193. 2443.58 2.36 0.152803 0.130673 2603 17 1318 3763 226953 54379 6.75652 6.75652 -151.214 -6.75652 0 0 926341. 3205.33 0.28 0.08 0.0269065 0.0241739 152 203 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_050.v common 8.03 0.03 7048 13 0.32 -1 -1 32576 -1 -1 20 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65760 32 32 299 331 1 229 84 17 17 289 -1 unnamed_device 1.81 1215 0.12 0.00 6.29447 -129.558 -6.29447 6.29447 0.50 0.000390426 0.000338973 0.0555303 0.0472618 40 3672 41 6.79088e+06 269440 706193. 2443.58 3.75 0.176471 0.15042 3204 40 2450 7604 874410 292240 6.63117 6.63117 -162.261 -6.63117 0 0 926341. 3205.33 0.18 0.17 0.0357753 0.031674 145 204 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_051.v common 7.46 0.02 6924 14 0.22 -1 -1 32788 -1 -1 17 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65392 32 32 259 291 1 201 81 17 17 289 -1 unnamed_device 2.04 1043 0.14 0.00 6.63128 -137.141 -6.63128 6.63128 0.58 0.000351486 0.000303523 0.062984 0.0532281 36 3417 40 6.79088e+06 229024 648988. 2245.63 3.04 0.197264 0.168902 2725 23 1537 4213 283931 65778 7.45788 7.45788 -162.299 -7.45788 0 0 828058. 2865.25 0.17 0.07 0.0211872 0.0187628 122 164 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_052.v common 6.80 0.02 6972 13 0.21 -1 -1 32752 -1 -1 19 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65080 32 32 293 325 1 214 83 17 17 289 -1 unnamed_device 2.96 1243 0.12 0.00 6.62358 -133.513 -6.62358 6.62358 0.48 0.000368314 0.000318333 0.0542059 0.0457501 40 3069 24 6.79088e+06 255968 706193. 2443.58 1.64 0.150446 0.128497 2914 21 1616 4359 292823 65444 7.28579 7.28579 -156.378 -7.28579 0 0 926341. 3205.33 0.18 0.06 0.0209488 0.0186812 132 198 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_053.v common 5.32 0.03 7108 13 0.24 -1 -1 32880 -1 -1 23 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65896 31 32 311 343 1 233 86 17 17 289 -1 unnamed_device 1.25 1213 0.13 0.00 6.70962 -140.225 -6.70962 6.70962 0.48 0.000413447 0.000345875 0.0544652 0.0454658 40 3308 26 6.79088e+06 309856 706193. 2443.58 1.68 0.156234 0.133485 3185 18 1699 4801 329950 72159 6.97136 6.97136 -158.056 -6.97136 0 0 926341. 3205.33 0.18 0.07 0.0208287 0.0187459 151 218 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_054.v common 5.42 0.02 6920 12 0.25 -1 -1 32560 -1 -1 23 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65928 32 32 324 356 1 232 87 17 17 289 -1 unnamed_device 1.27 1242 0.14 0.00 6.58776 -142.381 -6.58776 6.58776 0.48 0.000399782 0.000346863 0.0606992 0.0506721 44 3628 42 6.79088e+06 309856 787024. 2723.27 1.88 0.19754 0.169052 2761 16 1474 4102 224719 50872 6.71306 6.71306 -157.328 -6.71306 0 0 997811. 3452.63 0.19 0.05 0.0193016 0.0174829 157 229 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_055.v common 6.39 0.02 6732 11 0.11 -1 -1 32548 -1 -1 13 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64724 32 32 216 248 1 164 77 17 17 289 -1 unnamed_device 1.22 928 0.09 0.00 4.5577 -115.837 -4.5577 4.5577 0.55 0.000286414 0.000246788 0.0387696 0.0326635 36 2827 42 6.79088e+06 175136 648988. 2245.63 3.08 0.129147 0.110135 2357 18 1036 2692 204446 50967 5.0589 5.0589 -137.859 -5.0589 0 0 828058. 2865.25 0.16 0.04 0.0139769 0.0125657 90 121 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_056.v common 5.85 0.03 6764 13 0.14 -1 -1 32740 -1 -1 18 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64928 32 32 245 277 1 191 82 17 17 289 -1 unnamed_device 2.23 1202 0.11 0.00 6.45908 -143.061 -6.45908 6.45908 0.48 0.000327459 0.00028333 0.0480819 0.0409284 38 2956 19 6.79088e+06 242496 678818. 2348.85 1.57 0.12752 0.109376 2539 17 1133 2972 179663 38792 6.83498 6.83498 -161.683 -6.83498 0 0 902133. 3121.57 0.17 0.04 0.0166757 0.0150719 113 150 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_057.v common 5.24 0.04 7120 14 0.36 -1 -1 32808 -1 -1 26 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66168 32 32 361 393 1 260 90 17 17 289 -1 unnamed_device 1.23 1461 0.13 0.00 7.16403 -146.754 -7.16403 7.16403 0.48 0.000459819 0.000400128 0.0575764 0.048936 46 3897 37 6.79088e+06 350272 828058. 2865.25 1.61 0.184314 0.158722 3080 18 1563 4561 237243 53507 7.41812 7.41812 -165.015 -7.41812 0 0 1.01997e+06 3529.29 0.19 0.06 0.0271534 0.0248015 180 266 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_058.v common 8.29 0.02 6940 13 0.28 -1 -1 32680 -1 -1 21 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65944 32 32 318 350 1 242 85 17 17 289 -1 unnamed_device 1.88 1439 0.10 0.00 6.59125 -145.495 -6.59125 6.59125 0.54 0.00041516 0.000360859 0.0461201 0.0389116 38 3685 34 6.79088e+06 282912 678818. 2348.85 4.13 0.171067 0.146229 2992 19 1428 3906 220800 48140 7.00635 7.00635 -164.977 -7.00635 0 0 902133. 3121.57 0.17 0.06 0.0240377 0.0216692 154 223 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_059.v common 4.72 0.02 6792 11 0.17 -1 -1 32524 -1 -1 17 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65076 30 32 223 255 1 163 79 17 17 289 -1 unnamed_device 0.78 720 0.10 0.00 5.70363 -117.661 -5.70363 5.70363 0.48 0.000294977 0.000252614 0.0458739 0.038437 38 2441 23 6.79088e+06 229024 678818. 2348.85 1.94 0.11932 0.101231 1672 17 939 2609 122611 31139 5.82893 5.82893 -130.22 -5.82893 0 0 902133. 3121.57 0.17 0.03 0.0138338 0.0124389 99 132 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_060.v common 7.86 0.02 7204 15 0.38 -1 -1 32748 -1 -1 24 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66424 32 32 335 367 1 247 88 17 17 289 -1 unnamed_device 1.33 1559 0.15 0.00 7.79756 -162.358 -7.79756 7.79756 0.51 0.000440155 0.000382725 0.0649088 0.0552694 38 4485 37 6.79088e+06 323328 678818. 2348.85 3.95 0.203273 0.174468 3449 29 1771 5364 516628 218459 8.00896 8.00896 -181.578 -8.00896 0 0 902133. 3121.57 0.17 0.13 0.0321944 0.0288256 176 240 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_061.v common 4.92 0.03 6944 13 0.27 -1 -1 32656 -1 -1 20 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65444 32 32 301 333 1 219 84 17 17 289 -1 unnamed_device 0.85 1121 0.14 0.00 6.7712 -140.022 -6.7712 6.7712 0.49 0.000398593 0.000345139 0.0612084 0.0519622 48 2926 21 6.79088e+06 269440 865456. 2994.66 1.75 0.161321 0.138918 2456 18 1332 3850 226097 54511 7.18281 7.18281 -160.956 -7.18281 0 0 1.05005e+06 3633.38 0.20 0.05 0.0202965 0.0182494 149 206 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_062.v common 6.63 0.02 6756 11 0.10 -1 -1 32596 -1 -1 14 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64964 32 32 238 270 1 170 78 17 17 289 -1 unnamed_device 1.37 784 0.10 0.00 5.48874 -114.12 -5.48874 5.48874 0.47 0.000321962 0.000259709 0.0432379 0.0360143 34 3344 43 6.79088e+06 188608 618332. 2139.56 3.31 0.131512 0.110806 2214 15 1090 2632 164821 40725 5.48874 5.48874 -133.431 -5.48874 0 0 787024. 2723.27 0.16 0.04 0.013015 0.0116598 95 143 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_063.v common 5.51 0.03 7152 12 0.28 -1 -1 32616 -1 -1 20 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65744 32 32 308 340 1 222 84 17 17 289 -1 unnamed_device 1.33 1127 0.13 0.00 6.12227 -125.422 -6.12227 6.12227 0.48 0.000393806 0.000339662 0.0591885 0.0495411 48 3038 27 6.79088e+06 269440 865456. 2994.66 1.84 0.162329 0.138439 2591 25 1595 5391 314845 71408 6.58078 6.58078 -145.235 -6.58078 0 0 1.05005e+06 3633.38 0.20 0.07 0.025607 0.0227373 148 213 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_064.v common 6.04 0.03 6728 12 0.16 -1 -1 32300 -1 -1 17 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65148 32 32 253 285 1 190 81 17 17 289 -1 unnamed_device 1.59 1132 0.11 0.00 5.96547 -127.97 -5.96547 5.96547 0.47 0.00033949 0.000292912 0.0483393 0.0407831 38 3110 30 6.79088e+06 229024 678818. 2348.85 2.37 0.138471 0.117982 2533 18 1184 3148 178296 40682 6.34137 6.34137 -149.569 -6.34137 0 0 902133. 3121.57 0.17 0.04 0.0166423 0.0149839 116 158 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_065.v common 3.87 0.03 6736 12 0.14 -1 -1 32588 -1 -1 19 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65204 30 32 227 259 1 162 81 17 17 289 -1 unnamed_device 1.13 890 0.10 0.00 6.04736 -124.194 -6.04736 6.04736 0.48 0.00030861 0.000265115 0.045658 0.0387172 30 2468 22 6.79088e+06 255968 556674. 1926.21 0.76 0.0905201 0.0776323 2083 30 969 2731 301455 141813 6.29796 6.29796 -141.575 -6.29796 0 0 706193. 2443.58 0.14 0.08 0.0207647 0.0184493 106 136 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_066.v common 5.93 0.03 7076 12 0.24 -1 -1 32856 -1 -1 22 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65236 29 32 292 324 1 206 83 17 17 289 -1 unnamed_device 1.07 1033 0.13 0.00 5.91857 -112.402 -5.91857 5.91857 0.49 0.000376283 0.000324481 0.0583009 0.0490662 38 3380 44 6.79088e+06 296384 678818. 2348.85 2.62 0.170017 0.144713 2457 17 1301 3895 197932 47094 6.29447 6.29447 -131.473 -6.29447 0 0 902133. 3121.57 0.20 0.05 0.0205181 0.0186204 144 203 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_067.v common 6.74 0.03 7040 14 0.27 -1 -1 32828 -1 -1 23 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65512 32 32 316 348 1 248 87 17 17 289 -1 unnamed_device 2.26 1298 0.14 0.00 6.7243 -139.821 -6.7243 6.7243 0.51 0.000421473 0.000358751 0.0614218 0.0521761 40 3318 24 6.79088e+06 309856 706193. 2443.58 1.88 0.170358 0.145092 3103 22 2052 5165 339780 77734 7.17168 7.17168 -166.147 -7.17168 0 0 926341. 3205.33 0.18 0.08 0.0247336 0.0220651 156 221 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_068.v common 4.97 0.02 6964 12 0.20 -1 -1 32688 -1 -1 19 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65532 32 32 286 318 1 216 83 17 17 289 -1 unnamed_device 1.05 1220 0.12 0.00 6.50936 -135.78 -6.50936 6.50936 0.49 0.000377968 0.000326648 0.0532001 0.0453856 48 3055 21 6.79088e+06 255968 865456. 2994.66 1.67 0.150315 0.129229 2829 17 1367 4129 273129 60150 6.88526 6.88526 -154.089 -6.88526 0 0 1.05005e+06 3633.38 0.23 0.08 0.0249611 0.0225841 137 191 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_069.v common 4.51 0.03 6688 12 0.11 -1 -1 32524 -1 -1 16 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65320 32 32 221 253 1 167 80 17 17 289 -1 unnamed_device 1.24 1060 0.09 0.00 5.91857 -125.601 -5.91857 5.91857 0.48 0.000286512 0.000245657 0.04065 0.0344658 30 2759 27 6.79088e+06 215552 556674. 1926.21 1.38 0.087523 0.0746561 2265 14 925 2319 144629 31545 6.29447 6.29447 -145.356 -6.29447 0 0 706193. 2443.58 0.14 0.03 0.0125079 0.0112879 96 126 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_070.v common 5.17 0.03 6916 12 0.17 -1 -1 32132 -1 -1 18 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65024 31 32 261 293 1 190 81 17 17 289 -1 unnamed_device 1.71 1095 0.11 0.00 5.78983 -125.854 -5.78983 5.78983 0.48 0.000341294 0.00029501 0.0496737 0.0423406 38 2648 23 6.79088e+06 242496 678818. 2348.85 1.41 0.132066 0.113454 2264 16 1084 2918 155220 35740 6.16573 6.16573 -142.19 -6.16573 0 0 902133. 3121.57 0.17 0.04 0.0159137 0.0143319 115 168 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_071.v common 8.08 0.03 6892 11 0.17 -1 -1 32568 -1 -1 21 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65376 30 32 277 309 1 202 83 17 17 289 -1 unnamed_device 2.02 1038 0.12 0.00 5.41383 -109.676 -5.41383 5.41383 0.48 0.000354017 0.000304979 0.0516191 0.0435576 38 3325 36 6.79088e+06 282912 678818. 2348.85 3.99 0.152678 0.129199 2382 17 1298 3664 216529 51120 5.98994 5.98994 -132.537 -5.98994 0 0 902133. 3121.57 0.17 0.05 0.0173065 0.0155898 127 186 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_072.v common 8.02 0.03 7008 11 0.16 -1 -1 32248 -1 -1 20 28 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65016 28 32 251 283 1 192 80 17 17 289 -1 unnamed_device 1.01 1161 0.10 0.00 5.69593 -107.026 -5.69593 5.69593 0.48 0.000346213 0.000284688 0.0442115 0.0367344 36 3335 26 6.79088e+06 269440 648988. 2245.63 4.91 0.135694 0.113891 2863 20 1520 4202 318182 75113 5.73158 5.73158 -126.032 -5.73158 0 0 828058. 2865.25 0.16 0.06 0.0178312 0.0158949 123 164 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_073.v common 6.27 0.03 6768 13 0.14 -1 -1 32552 -1 -1 16 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64848 30 32 223 255 1 173 78 17 17 289 -1 unnamed_device 2.78 911 0.11 0.00 6.07188 -117.907 -6.07188 6.07188 0.58 0.000300492 0.000260492 0.0471379 0.0399008 30 3164 29 6.79088e+06 215552 556674. 1926.21 1.30 0.117852 0.100978 2351 16 1111 2777 159540 37257 6.15798 6.15798 -137.414 -6.15798 0 0 706193. 2443.58 0.14 0.04 0.0135298 0.0121792 104 132 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_074.v common 6.38 0.02 6792 12 0.14 -1 -1 32264 -1 -1 19 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64988 32 32 269 301 1 196 83 17 17 289 -1 unnamed_device 1.97 953 0.13 0.00 6.24757 -134.542 -6.24757 6.24757 0.57 0.000429405 0.000367607 0.0579137 0.0490957 38 2958 47 6.79088e+06 255968 678818. 2348.85 2.17 0.163213 0.138877 2190 17 1177 2921 148889 36281 6.49817 6.49817 -154.919 -6.49817 0 0 902133. 3121.57 0.17 0.04 0.0169161 0.0152262 125 174 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_075.v common 5.57 0.02 6912 13 0.23 -1 -1 32260 -1 -1 20 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65412 31 32 283 315 1 198 83 17 17 289 -1 unnamed_device 1.50 1028 0.12 0.00 6.5598 -132.288 -6.5598 6.5598 0.56 0.000371039 0.000317684 0.05476 0.0463535 30 3369 47 6.79088e+06 269440 556674. 1926.21 1.83 0.13202 0.11241 2452 18 1354 3785 183040 44501 6.88531 6.88531 -152.776 -6.88531 0 0 706193. 2443.58 0.14 0.05 0.0184977 0.0166436 137 190 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_076.v common 5.32 0.03 7044 14 0.24 -1 -1 32932 -1 -1 21 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65480 32 32 308 340 1 223 85 17 17 289 -1 unnamed_device 1.25 1359 0.13 0.00 7.10026 -147.221 -7.10026 7.10026 0.48 0.000400265 0.000347056 0.0583524 0.0497615 38 3525 21 6.79088e+06 282912 678818. 2348.85 1.86 0.156123 0.134574 2942 20 1344 3904 216502 48562 7.72676 7.72676 -170.595 -7.72676 0 0 902133. 3121.57 0.17 0.05 0.0219403 0.0197667 151 213 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_077.v common 8.19 0.03 7000 14 0.21 -1 -1 32564 -1 -1 20 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65464 32 32 277 309 1 208 84 17 17 289 -1 unnamed_device 1.88 1283 0.12 0.00 7.04648 -140.775 -7.04648 7.04648 0.50 0.000425923 0.000374583 0.0531272 0.0448773 36 3488 27 6.79088e+06 269440 648988. 2245.63 4.18 0.149233 0.12763 2951 15 1184 3445 218376 48503 7.50078 7.50078 -161.633 -7.50078 0 0 828058. 2865.25 0.16 0.05 0.0169098 0.0153056 138 182 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_078.v common 6.65 0.03 7040 13 0.29 -1 -1 32460 -1 -1 20 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65276 32 32 288 320 1 209 84 17 17 289 -1 unnamed_device 2.03 1231 0.14 0.00 6.6382 -140.72 -6.6382 6.6382 0.49 0.000377898 0.000326967 0.0622831 0.0525278 38 3314 26 6.79088e+06 269440 678818. 2348.85 2.07 0.162504 0.138788 2751 16 1319 3833 201068 45396 7.0141 7.0141 -158.136 -7.0141 0 0 902133. 3121.57 0.27 0.08 0.0304801 0.0274167 140 193 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_079.v common 5.41 0.06 6864 13 0.17 -1 -1 32656 -1 -1 17 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64852 30 32 230 262 1 178 79 17 17 289 -1 unnamed_device 1.58 1053 0.09 0.00 6.33721 -133.057 -6.33721 6.33721 0.48 0.000311844 0.00027022 0.0382836 0.0325166 36 2712 23 6.79088e+06 229024 648988. 2245.63 1.65 0.114001 0.0977877 2275 18 929 2278 135245 30971 6.71311 6.71311 -152.536 -6.71311 0 0 828058. 2865.25 0.27 0.04 0.0154915 0.0139911 108 139 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_080.v common 9.22 0.02 6992 13 0.38 -1 -1 32596 -1 -1 24 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65856 30 32 294 326 1 223 86 17 17 289 -1 unnamed_device 1.26 1258 0.13 0.00 6.7635 -138.114 -6.7635 6.7635 0.48 0.000385085 0.000333611 0.0583786 0.0495292 36 4046 34 6.79088e+06 323328 648988. 2245.63 5.67 0.174119 0.147779 3232 19 1742 4855 316719 70697 7.04627 7.04627 -161.298 -7.04627 0 0 828058. 2865.25 0.16 0.06 0.0206886 0.0185618 144 203 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_081.v common 7.35 0.02 7008 14 0.23 -1 -1 32504 -1 -1 20 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65064 32 32 276 308 1 205 84 17 17 289 -1 unnamed_device 1.61 1256 0.11 0.00 6.72087 -146.817 -6.72087 6.72087 0.48 0.000366825 0.000318009 0.0460508 0.0391622 36 3640 45 6.79088e+06 269440 648988. 2245.63 3.53 0.165072 0.141512 2895 19 1311 3881 230104 50734 7.13597 7.13597 -170.869 -7.13597 0 0 828058. 2865.25 0.16 0.05 0.0196827 0.0177689 133 181 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_082.v common 5.76 0.02 6976 12 0.20 -1 -1 32652 -1 -1 21 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65396 31 32 293 325 1 213 84 17 17 289 -1 unnamed_device 1.58 1087 0.14 0.00 6.42326 -127.768 -6.42326 6.42326 0.59 0.000369814 0.000320019 0.0654007 0.0548255 46 2688 19 6.79088e+06 282912 828058. 2865.25 1.82 0.188475 0.161515 2146 19 1209 3454 174688 41234 6.54507 6.54507 -141.358 -6.54507 0 0 1.01997e+06 3529.29 0.19 0.05 0.0195558 0.0176451 143 200 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_083.v common 7.01 0.03 7008 13 0.21 -1 -1 32628 -1 -1 20 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65096 30 32 273 305 1 202 82 17 17 289 -1 unnamed_device 1.61 1120 0.09 0.00 6.47021 -120.977 -6.47021 6.47021 0.48 0.000356592 0.000308593 0.0389683 0.0329451 38 3209 32 6.79088e+06 269440 678818. 2348.85 3.24 0.140802 0.120809 2618 19 1249 3518 186672 42399 7.01061 7.01061 -141.824 -7.01061 0 0 902133. 3121.57 0.17 0.05 0.0181524 0.016339 127 182 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_084.v common 5.65 0.03 6948 14 0.29 -1 -1 32656 -1 -1 23 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66076 32 32 310 342 1 236 87 17 17 289 -1 unnamed_device 1.32 1296 0.13 0.00 7.47959 -144.789 -7.47959 7.47959 0.49 0.00042938 0.000352145 0.0598957 0.0505833 38 3796 49 6.79088e+06 309856 678818. 2348.85 2.06 0.185499 0.158776 2834 17 1520 4006 209853 49598 8.23139 8.23139 -169.333 -8.23139 0 0 902133. 3121.57 0.18 0.05 0.0206611 0.0186747 157 215 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_085.v common 6.16 0.04 7048 11 0.25 -1 -1 32688 -1 -1 22 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65456 29 32 259 291 1 192 83 17 17 289 -1 unnamed_device 1.25 992 0.13 0.00 5.99348 -114.612 -5.99348 5.99348 0.48 0.000359355 0.000297962 0.0555253 0.0464473 36 3094 44 6.79088e+06 296384 648988. 2245.63 2.64 0.161141 0.136979 2477 18 1191 3493 199551 47697 6.24408 6.24408 -134.826 -6.24408 0 0 828058. 2865.25 0.16 0.05 0.0176015 0.0157984 132 170 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_086.v common 5.95 0.02 6768 13 0.13 -1 -1 32412 -1 -1 15 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64868 32 32 225 257 1 180 79 17 17 289 -1 unnamed_device 2.60 977 0.10 0.00 5.81784 -133.168 -5.81784 5.81784 0.48 0.000303712 0.000262763 0.0440478 0.037538 34 2900 29 6.79088e+06 202080 618332. 2139.56 1.42 0.120943 0.103337 2489 19 1167 2712 182981 42161 6.19025 6.19025 -155.462 -6.19025 0 0 787024. 2723.27 0.17 0.05 0.0160951 0.0144981 100 130 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_087.v common 6.29 0.03 6924 14 0.20 -1 -1 32732 -1 -1 18 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65432 32 32 273 305 1 204 82 17 17 289 -1 unnamed_device 1.62 1301 0.09 0.00 7.01067 -141.982 -7.01067 7.01067 0.49 0.00035926 0.000312452 0.0414826 0.0351823 30 3690 36 6.79088e+06 242496 556674. 1926.21 2.58 0.112829 0.0965324 2954 22 1352 3637 291159 80096 7.22556 7.22556 -164.46 -7.22556 0 0 706193. 2443.58 0.14 0.07 0.0203864 0.0182119 130 178 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_088.v common 7.15 0.02 6944 15 0.32 -1 -1 33308 -1 -1 22 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65888 32 32 322 354 1 239 86 17 17 289 -1 unnamed_device 1.50 1227 0.12 0.00 7.51541 -151.672 -7.51541 7.51541 0.49 0.000416144 0.000361032 0.0526622 0.0447437 38 4165 37 6.79088e+06 296384 678818. 2348.85 3.25 0.182802 0.156504 3052 22 1690 4335 232738 54948 8.01661 8.01661 -177.688 -8.01661 0 0 902133. 3121.57 0.20 0.07 0.0313675 0.0281947 154 227 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_089.v common 5.35 0.02 6708 11 0.13 -1 -1 32172 -1 -1 15 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65320 32 32 218 250 1 157 79 17 17 289 -1 unnamed_device 1.48 756 0.10 0.00 5.45303 -110.797 -5.45303 5.45303 0.49 0.000289372 0.00024806 0.042828 0.0362009 38 2175 34 6.79088e+06 202080 678818. 2348.85 1.90 0.121092 0.103438 1622 16 917 2370 119631 29730 5.70363 5.70363 -125.401 -5.70363 0 0 902133. 3121.57 0.17 0.03 0.0128247 0.011531 92 123 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_090.v common 5.97 0.03 6836 12 0.14 -1 -1 32388 -1 -1 17 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65252 31 32 244 276 1 183 80 17 17 289 -1 unnamed_device 2.12 999 0.13 0.00 5.48453 -119.835 -5.48453 5.48453 0.56 0.000490657 0.000415454 0.059843 0.0505533 40 2562 29 6.79088e+06 229024 706193. 2443.58 1.48 0.149389 0.127729 2323 32 1184 3101 399891 182175 6.15793 6.15793 -142.295 -6.15793 0 0 926341. 3205.33 0.18 0.10 0.0262352 0.0233572 113 151 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_091.v common 4.53 0.03 6944 12 0.33 -1 -1 33024 -1 -1 21 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65464 32 32 301 333 1 213 85 17 17 289 -1 unnamed_device 1.07 1204 0.12 0.00 6.37292 -137.72 -6.37292 6.37292 0.48 0.000679562 0.000598412 0.054437 0.0459387 30 3918 32 6.79088e+06 282912 556674. 1926.21 1.23 0.12401 0.105858 2766 18 1366 3670 191182 45108 6.53737 6.53737 -158.995 -6.53737 0 0 706193. 2443.58 0.15 0.05 0.0202335 0.0182864 145 206 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_092.v common 5.21 0.02 6996 12 0.20 -1 -1 33060 -1 -1 19 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64960 32 32 278 310 1 210 83 17 17 289 -1 unnamed_device 1.57 1224 0.13 0.00 6.63466 -135.319 -6.63466 6.63466 0.49 0.000355711 0.000305578 0.0576237 0.0482158 40 3018 21 6.79088e+06 255968 706193. 2443.58 1.45 0.146873 0.125265 2880 24 1413 4265 445515 148382 6.83836 6.83836 -154.667 -6.83836 0 0 926341. 3205.33 0.18 0.09 0.0218734 0.0194933 132 183 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_093.v common 5.69 0.02 7140 14 0.38 -1 -1 32748 -1 -1 25 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66068 32 32 333 365 1 241 89 17 17 289 -1 unnamed_device 1.37 1253 0.13 0.00 7.04987 -145.073 -7.04987 7.04987 0.49 0.000431573 0.000374741 0.0560134 0.0472105 44 3726 33 6.79088e+06 336800 787024. 2723.27 1.90 0.186036 0.15939 2840 18 1451 4194 230780 53215 7.67985 7.67985 -166.96 -7.67985 0 0 997811. 3452.63 0.19 0.06 0.023199 0.0210542 170 238 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_094.v common 5.24 0.03 6976 11 0.18 -1 -1 32604 -1 -1 22 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65004 30 32 261 293 1 199 84 17 17 289 -1 unnamed_device 1.70 1213 0.12 0.00 5.70712 -117.417 -5.70712 5.70712 0.48 0.000340564 0.000293227 0.0523902 0.044201 46 2872 28 6.79088e+06 296384 828058. 2865.25 1.37 0.140031 0.120033 2365 15 1148 3205 164667 36788 6.08302 6.08302 -129.448 -6.08302 0 0 1.01997e+06 3529.29 0.19 0.04 0.0155725 0.014109 128 170 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_095.v common 3.98 0.02 6788 11 0.19 -1 -1 32252 -1 -1 19 27 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65080 27 32 217 249 1 150 78 17 17 289 -1 unnamed_device 1.03 832 0.12 0.00 5.39837 -100.891 -5.39837 5.39837 0.49 0.000336849 0.00029033 0.0550133 0.0463425 30 2407 47 6.79088e+06 255968 556674. 1926.21 0.92 0.113286 0.0965757 1851 19 901 2358 128111 29702 5.82117 5.82117 -120.911 -5.82117 0 0 706193. 2443.58 0.15 0.04 0.0145838 0.0130414 101 132 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_096.v common 7.65 0.03 7276 13 0.36 -1 -1 32356 -1 -1 30 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66296 32 32 373 405 1 271 94 17 17 289 -1 unnamed_device 2.08 1646 0.20 0.00 6.96371 -142.416 -6.96371 6.96371 0.59 0.000634855 0.00056936 0.0871381 0.0735016 40 4305 45 6.79088e+06 404160 706193. 2443.58 2.80 0.26598 0.229826 4053 28 2414 7629 633422 167647 7.32842 7.32842 -165.551 -7.32842 0 0 926341. 3205.33 0.18 0.13 0.0341976 0.0305593 194 278 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_097.v common 6.70 0.03 7008 14 0.22 -1 -1 32744 -1 -1 20 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65460 31 32 269 301 1 201 83 17 17 289 -1 unnamed_device 1.27 1189 0.12 0.00 7.05679 -142.987 -7.05679 7.05679 0.54 0.000354184 0.000306778 0.0520914 0.0440571 36 3176 25 6.79088e+06 269440 648988. 2245.63 3.21 0.14711 0.124912 2765 19 1194 3035 186689 42408 7.26476 7.26476 -161.835 -7.26476 0 0 828058. 2865.25 0.16 0.05 0.0184802 0.0166362 128 176 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_098.v common 6.07 0.02 6784 12 0.16 -1 -1 32416 -1 -1 20 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64804 32 32 228 260 1 187 84 17 17 289 -1 unnamed_device 2.27 983 0.11 0.00 5.78978 -129.862 -5.78978 5.78978 0.48 0.000316403 0.000272502 0.0445124 0.0375998 48 2630 22 6.79088e+06 269440 865456. 2994.66 1.47 0.120085 0.102801 2178 20 1188 3116 176687 42022 6.04038 6.04038 -144.401 -6.04038 0 0 1.05005e+06 3633.38 0.32 0.07 0.0265009 0.0236881 111 133 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_099.v common 7.85 0.02 6876 13 0.27 -1 -1 32664 -1 -1 21 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65204 32 32 265 297 1 198 85 17 17 289 -1 unnamed_device 1.77 1040 0.11 0.00 6.88531 -135.657 -6.88531 6.88531 0.48 0.000348905 0.000300939 0.0491354 0.0416585 38 3219 30 6.79088e+06 282912 678818. 2348.85 3.68 0.146192 0.124326 2419 17 1295 3468 176807 42676 7.01061 7.01061 -154.905 -7.01061 0 0 902133. 3121.57 0.27 0.05 0.0178042 0.0160766 128 170 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_100.v common 7.92 0.02 7108 13 0.24 -1 -1 32712 -1 -1 23 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66132 31 32 325 357 1 247 86 17 17 289 -1 unnamed_device 2.10 1319 0.17 0.00 6.29452 -132.327 -6.29452 6.29452 0.58 0.000612993 0.0005193 0.0766562 0.064254 46 3955 41 6.79088e+06 309856 828058. 2865.25 3.36 0.23919 0.20583 2879 19 1675 4715 255898 60041 6.67042 6.67042 -153.994 -6.67042 0 0 1.01997e+06 3529.29 0.20 0.06 0.0231303 0.0209061 160 232 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_101.v common 8.98 0.03 7000 11 0.19 -1 -1 32576 -1 -1 22 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65160 30 32 287 319 1 198 84 17 17 289 -1 unnamed_device 1.16 1241 0.13 0.00 5.71476 -118.949 -5.71476 5.71476 0.50 0.00036751 0.000316741 0.0575988 0.0487336 36 3888 50 6.79088e+06 296384 648988. 2245.63 5.39 0.179968 0.153115 2969 29 1558 5680 620795 230186 6.20483 6.20483 -136.722 -6.20483 0 0 828058. 2865.25 0.20 0.18 0.0421462 0.0377997 141 196 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_102.v common 6.13 0.03 6924 15 0.25 -1 -1 32508 -1 -1 21 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65928 32 32 297 329 1 217 85 17 17 289 -1 unnamed_device 1.74 1149 0.14 0.00 7.4797 -150.523 -7.4797 7.4797 0.49 0.000388245 0.00033663 0.0646603 0.0549406 38 3465 25 6.79088e+06 282912 678818. 2348.85 2.16 0.172626 0.148229 2598 19 1323 3708 191191 44753 7.89131 7.89131 -174.1 -7.89131 0 0 902133. 3121.57 0.17 0.05 0.0204612 0.0184852 143 202 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_103.v common 5.75 0.02 6980 13 0.27 -1 -1 32660 -1 -1 21 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65948 32 32 311 343 1 227 85 17 17 289 -1 unnamed_device 1.69 1214 0.13 0.00 6.8888 -142.454 -6.8888 6.8888 0.49 0.000408574 0.000353482 0.0578355 0.0487652 46 3096 29 6.79088e+06 282912 828058. 2865.25 1.73 0.169788 0.145688 2593 17 1338 4241 218394 51229 7.1394 7.1394 -156.566 -7.1394 0 0 1.01997e+06 3529.29 0.20 0.05 0.0233044 0.0211222 152 216 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_104.v common 5.14 0.02 6784 12 0.16 -1 -1 32268 -1 -1 20 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64916 29 32 236 268 1 180 81 17 17 289 -1 unnamed_device 1.60 885 0.11 0.00 6.25106 -124.432 -6.25106 6.25106 0.48 0.00030669 0.000264884 0.0486881 0.0411147 38 2457 21 6.79088e+06 269440 678818. 2348.85 1.44 0.130082 0.110879 1963 18 1130 2681 139472 33276 6.62696 6.62696 -141.888 -6.62696 0 0 902133. 3121.57 0.17 0.04 0.0150142 0.0135186 111 147 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_105.v common 5.55 0.02 6704 11 0.19 -1 -1 32628 -1 -1 16 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65284 32 32 231 263 1 180 80 17 17 289 -1 unnamed_device 1.61 946 0.10 0.00 5.66786 -118.923 -5.66786 5.66786 0.48 0.000297116 0.000254739 0.0419942 0.0354556 40 2681 47 6.79088e+06 215552 706193. 2443.58 1.87 0.128479 0.109451 2458 18 1188 3026 216278 48885 5.87156 5.87156 -142.635 -5.87156 0 0 926341. 3205.33 0.18 0.05 0.0148753 0.013377 100 136 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_106.v common 4.92 0.02 6992 13 0.26 -1 -1 32576 -1 -1 21 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65292 31 32 294 326 1 211 84 17 17 289 -1 unnamed_device 0.91 1262 0.10 0.00 6.49822 -133.986 -6.49822 6.49822 0.49 0.000381167 0.000331146 0.0441764 0.0370805 38 3241 22 6.79088e+06 282912 678818. 2348.85 1.84 0.142334 0.121226 2876 17 1395 3934 220611 48179 6.62352 6.62352 -151.164 -6.62352 0 0 902133. 3121.57 0.17 0.05 0.0190719 0.0172372 143 201 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_107.v common 5.48 0.02 6792 10 0.13 -1 -1 32300 -1 -1 18 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64888 29 32 221 253 1 165 79 17 17 289 -1 unnamed_device 1.25 749 0.10 0.00 5.19894 -102.399 -5.19894 5.19894 0.50 0.000297651 0.000254646 0.0424337 0.0358367 38 2176 23 6.79088e+06 242496 678818. 2348.85 2.21 0.118573 0.100064 1555 14 868 2287 109189 27185 5.32424 5.32424 -112.205 -5.32424 0 0 902133. 3121.57 0.17 0.03 0.0131596 0.0119199 98 132 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_108.v common 8.28 0.03 6720 14 0.14 -1 -1 32480 -1 -1 17 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65036 32 32 240 272 1 189 81 17 17 289 -1 unnamed_device 2.85 1113 0.10 0.00 6.67391 -144.003 -6.67391 6.67391 0.49 0.000345542 0.000279083 0.0446331 0.0378923 36 3139 46 6.79088e+06 229024 648988. 2245.63 3.28 0.147291 0.125293 2770 37 1203 3294 594988 286655 6.92451 6.92451 -165.756 -6.92451 0 0 828058. 2865.25 0.16 0.14 0.0264782 0.0234876 109 145 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_109.v common 4.99 0.03 7036 12 0.26 -1 -1 33096 -1 -1 20 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65368 31 32 292 324 1 214 83 17 17 289 -1 unnamed_device 0.94 1285 0.13 0.00 6.30566 -133.806 -6.30566 6.30566 0.49 0.000374819 0.000324177 0.055705 0.0473214 38 3329 24 6.79088e+06 269440 678818. 2348.85 1.83 0.154354 0.132316 2911 16 1308 3912 207570 46847 6.59546 6.59546 -151.81 -6.59546 0 0 902133. 3121.57 0.18 0.05 0.0195054 0.0176543 143 199 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_110.v common 7.14 0.02 6812 12 0.13 -1 -1 32124 -1 -1 17 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64836 31 32 229 261 1 180 80 17 17 289 -1 unnamed_device 1.69 970 0.12 0.00 5.48874 -116.688 -5.48874 5.48874 0.61 0.000364895 0.00030135 0.0514662 0.0432466 36 2955 40 6.79088e+06 229024 648988. 2245.63 3.19 0.162723 0.138876 2374 15 1077 2559 183293 41642 5.73934 5.73934 -132.91 -5.73934 0 0 828058. 2865.25 0.16 0.04 0.0142911 0.0126995 102 136 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_111.v common 5.39 0.03 6900 12 0.16 -1 -1 32664 -1 -1 18 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65600 32 32 282 314 1 199 82 17 17 289 -1 unnamed_device 1.55 1060 0.12 0.00 5.86813 -123.927 -5.86813 5.86813 0.48 0.000372581 0.000304654 0.0520472 0.0434969 40 2729 23 6.79088e+06 242496 706193. 2443.58 1.60 0.140462 0.119059 2679 42 1839 6636 866072 392672 6.02221 6.02221 -146.799 -6.02221 0 0 926341. 3205.33 0.18 0.19 0.0349527 0.0309387 125 187 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_112.v common 5.43 0.02 6984 13 0.24 -1 -1 32660 -1 -1 19 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65736 31 32 269 301 1 206 82 17 17 289 -1 unnamed_device 1.37 1235 0.12 0.00 6.23987 -133.63 -6.23987 6.23987 0.49 0.000396683 0.000346317 0.0536082 0.0453809 46 2896 30 6.79088e+06 255968 828058. 2865.25 1.83 0.150182 0.128869 2439 17 1149 3319 181590 40424 6.61577 6.61577 -149.386 -6.61577 0 0 1.01997e+06 3529.29 0.19 0.05 0.0178816 0.016113 134 176 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_113.v common 5.21 0.02 6760 11 0.12 -1 -1 32248 -1 -1 15 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64664 32 32 237 269 1 188 79 17 17 289 -1 unnamed_device 1.14 1125 0.11 0.00 5.66792 -122.044 -5.66792 5.66792 0.48 0.000306427 0.000262822 0.0452128 0.0382808 38 3100 30 6.79088e+06 202080 678818. 2348.85 2.02 0.126978 0.108067 2557 19 1214 3108 192973 41554 6.07953 6.07953 -143.768 -6.07953 0 0 902133. 3121.57 0.17 0.05 0.0159887 0.0143112 105 142 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_114.v common 6.20 0.02 6764 13 0.20 -1 -1 32576 -1 -1 18 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65316 32 32 259 291 1 193 82 17 17 289 -1 unnamed_device 1.76 905 0.12 0.00 6.58781 -137.213 -6.58781 6.58781 0.54 0.000344136 0.000296879 0.0512583 0.0435625 40 2710 26 6.79088e+06 242496 706193. 2443.58 2.23 0.139897 0.119265 2292 16 1206 3202 182235 45569 7.21431 7.21431 -162.392 -7.21431 0 0 926341. 3205.33 0.18 0.04 0.0160641 0.0144751 119 164 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_115.v common 6.54 0.02 6992 13 0.21 -1 -1 32680 -1 -1 18 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65748 32 32 277 309 1 205 82 17 17 289 -1 unnamed_device 1.40 1136 0.12 0.00 6.07958 -128.437 -6.07958 6.07958 0.48 0.00035686 0.000308629 0.0519252 0.0441305 38 3871 28 6.79088e+06 242496 678818. 2348.85 3.05 0.149503 0.126856 2792 17 1475 3920 226814 51605 6.40514 6.40514 -152.074 -6.40514 0 0 902133. 3121.57 0.17 0.05 0.0179639 0.0162255 130 182 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_116.v common 5.70 0.03 7060 11 0.15 -1 -1 32664 -1 -1 20 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65176 29 32 245 277 1 178 81 17 17 289 -1 unnamed_device 1.54 871 0.11 0.00 5.44876 -100.321 -5.44876 5.44876 0.50 0.00033852 0.000276688 0.0476951 0.0397126 38 2698 29 6.79088e+06 269440 678818. 2348.85 2.02 0.131066 0.110832 1960 14 983 2807 144002 35197 5.82466 5.82466 -116.536 -5.82466 0 0 902133. 3121.57 0.20 0.04 0.0177516 0.0160874 114 156 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_117.v common 6.35 0.02 7016 14 0.25 -1 -1 32880 -1 -1 23 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66064 32 32 316 348 1 234 87 17 17 289 -1 unnamed_device 1.25 1226 0.24 0.00 7.1002 -144.42 -7.1002 7.1002 0.57 0.00075588 0.000635385 0.105033 0.0889846 46 3274 43 6.79088e+06 309856 828058. 2865.25 2.56 0.230124 0.196985 2499 16 1451 4131 196698 48541 7.3508 7.3508 -162.349 -7.3508 0 0 1.01997e+06 3529.29 0.20 0.05 0.0203949 0.0185447 159 221 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_118.v common 6.63 0.03 6836 12 0.12 -1 -1 32220 -1 -1 19 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65132 31 32 230 262 1 190 82 17 17 289 -1 unnamed_device 2.79 1024 0.10 0.00 5.41383 -116.03 -5.41383 5.41383 0.49 0.000300881 0.000259172 0.0436641 0.0371012 38 2915 50 6.79088e+06 255968 678818. 2348.85 1.82 0.136414 0.116676 2192 15 1065 2598 153932 34841 5.91503 5.91503 -134.535 -5.91503 0 0 902133. 3121.57 0.17 0.04 0.0137573 0.0124462 110 137 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_119.v common 6.53 0.03 7064 13 0.24 -1 -1 33084 -1 -1 18 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65348 32 32 282 314 1 209 82 17 17 289 -1 unnamed_device 1.98 1218 0.11 0.00 6.66272 -136.788 -6.66272 6.66272 0.49 0.000367659 0.000317925 0.0517862 0.0441481 38 3380 19 6.79088e+06 242496 678818. 2348.85 2.31 0.144453 0.123706 2684 16 1244 3450 185727 42174 6.90213 6.90213 -152.84 -6.90213 0 0 902133. 3121.57 0.17 0.05 0.0200401 0.0179605 130 187 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_120.v common 5.11 0.02 6716 13 0.15 -1 -1 32612 -1 -1 16 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65172 32 32 235 267 1 181 80 17 17 289 -1 unnamed_device 1.89 1018 0.10 0.00 6.32253 -143.048 -6.32253 6.32253 0.50 0.000316719 0.000272016 0.0455288 0.0386998 38 2557 16 6.79088e+06 215552 678818. 2348.85 1.14 0.116336 0.100107 2325 15 1059 2570 141293 32573 6.58432 6.58432 -163.537 -6.58432 0 0 902133. 3121.57 0.17 0.04 0.0144209 0.0131023 104 140 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_121.v common 5.85 0.02 6992 12 0.17 -1 -1 32604 -1 -1 19 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65296 32 32 265 297 1 189 83 17 17 289 -1 unnamed_device 2.11 1104 0.12 0.00 5.74632 -124.854 -5.74632 5.74632 0.50 0.000350493 0.000301424 0.0513574 0.0434388 44 2824 32 6.79088e+06 255968 787024. 2723.27 1.55 0.144443 0.123574 2289 15 1111 3324 169272 40018 6.08302 6.08302 -143.164 -6.08302 0 0 997811. 3452.63 0.20 0.04 0.0158159 0.0143154 123 170 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_122.v common 8.63 0.05 7144 15 0.41 -1 -1 32796 -1 -1 25 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66232 32 32 344 376 1 256 89 17 17 289 -1 unnamed_device 2.07 1386 0.16 0.00 8.0201 -159.539 -8.0201 8.0201 0.60 0.000450432 0.000392889 0.0694004 0.0581849 40 3959 32 6.79088e+06 336800 706193. 2443.58 3.70 0.233343 0.200825 3772 30 2783 8599 851300 258792 8.3568 8.3568 -186.09 -8.3568 0 0 926341. 3205.33 0.18 0.17 0.0370558 0.0327687 176 249 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_123.v common 4.29 0.03 6608 10 0.06 -1 -1 31900 -1 -1 13 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64964 30 32 173 205 1 130 75 17 17 289 -1 unnamed_device 1.35 813 0.07 0.00 4.3932 -102.813 -4.3932 4.3932 0.48 0.000228443 0.000194449 0.0316062 0.0266945 34 1982 18 6.79088e+06 175136 618332. 2139.56 1.09 0.0831117 0.0706326 1775 15 630 1424 99557 22213 4.7691 4.7691 -122.979 -4.7691 0 0 787024. 2723.27 0.16 0.03 0.00959545 0.00859743 64 82 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_124.v common 5.23 0.03 6820 13 0.16 -1 -1 33028 -1 -1 18 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65212 30 32 229 261 1 179 80 17 17 289 -1 unnamed_device 1.32 972 0.11 0.00 6.07969 -127.578 -6.07969 6.07969 0.49 0.000409553 0.000358367 0.046655 0.0395423 36 2740 32 6.79088e+06 242496 648988. 2245.63 1.87 0.132051 0.112124 2273 20 1095 2732 161015 37392 6.50592 6.50592 -150.197 -6.50592 0 0 828058. 2865.25 0.16 0.04 0.0160033 0.0143699 106 138 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_125.v common 4.95 0.02 6816 12 0.19 -1 -1 32640 -1 -1 19 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65204 32 32 261 293 1 202 83 17 17 289 -1 unnamed_device 1.38 1274 0.10 0.00 5.95433 -135.93 -5.95433 5.95433 0.49 0.000342627 0.000296892 0.0410543 0.0347848 40 2979 29 6.79088e+06 255968 706193. 2443.58 1.40 0.129717 0.111094 2832 17 1310 3334 237533 50118 6.33023 6.33023 -154.67 -6.33023 0 0 926341. 3205.33 0.18 0.05 0.0184266 0.016486 117 166 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_126.v common 4.26 0.02 6784 9 0.11 -1 -1 32308 -1 -1 20 25 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64460 25 32 184 216 1 138 77 17 17 289 -1 unnamed_device 1.10 647 0.10 0.00 4.61153 -84.3407 -4.61153 4.61153 0.49 0.000253888 0.00021702 0.0440568 0.0370691 30 2063 44 6.79088e+06 269440 556674. 1926.21 1.26 0.0953329 0.0807322 1593 16 811 2074 105997 26825 4.86213 4.86213 -100.019 -4.86213 0 0 706193. 2443.58 0.14 0.03 0.0110694 0.00992693 87 103 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_127.v common 9.37 0.02 7068 12 0.24 -1 -1 32560 -1 -1 21 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65788 32 32 302 334 1 232 85 17 17 289 -1 unnamed_device 2.22 1296 0.13 0.00 6.21961 -139.152 -6.21961 6.21961 0.48 0.000379802 0.000329379 0.056524 0.0481691 36 4339 37 6.79088e+06 282912 648988. 2245.63 4.96 0.176067 0.149349 3238 24 1706 4357 345137 97111 6.62347 6.62347 -164.221 -6.62347 0 0 828058. 2865.25 0.17 0.08 0.023986 0.0214208 145 207 -1 -1 -1 -1
+ fixed_k6_frac_N8_22nm.xml mult_128.v common 7.62 0.03 7044 14 0.28 -1 -1 32816 -1 -1 22 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65212 31 32 295 327 1 214 85 17 17 289 -1 unnamed_device 0.93 1145 0.12 0.00 7.15059 -147.178 -7.15059 7.15059 0.48 0.000392336 0.000340245 0.0551959 0.0467401 36 3719 34 6.79088e+06 296384 648988. 2245.63 4.51 0.169505 0.143702 2937 17 1322 3654 214179 50170 7.65179 7.65179 -168.922 -7.65179 0 0 828058. 2865.25 0.16 0.05 0.0196002 0.0176249 150 202 -1 -1 -1 -1
+ fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 4.38 0.02 7380 1 0.01 -1 -1 30488 -1 -1 37 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66320 32 32 439 351 1 202 101 17 17 289 -1 unnamed_device 1.79 1073 0.19 0.00 3.32249 -119.305 -3.32249 3.32249 0.48 0.00038489 0.000341293 0.0650453 0.0564104 30 2872 22 6.87369e+06 517032 556674. 1926.21 0.63 0.116067 0.100392 2191 21 1606 2484 145384 35571 3.5465 3.5465 -143.673 -3.5465 0 0 706193. 2443.58 0.15 0.04 0.0172078 0.0152566 155 80 32 32 96 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 6.17 0.02 7420 1 0.03 -1 -1 30324 -1 -1 23 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65656 30 32 412 333 1 192 85 17 17 289 -1 unnamed_device 3.08 874 0.17 0.00 3.28949 -108.203 -3.28949 3.28949 0.51 0.000363692 0.000321189 0.0663961 0.0578311 32 3009 49 6.87369e+06 321398 586450. 2029.24 1.05 0.148121 0.128389 2154 24 2177 3632 325508 74326 4.099 4.099 -147.024 -4.099 0 0 744469. 2576.02 0.15 0.06 0.0180895 0.0157426 141 78 30 30 89 30
+ fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 4.35 0.03 7088 1 0.01 -1 -1 30340 -1 -1 36 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66024 32 32 388 310 1 191 100 17 17 289 -1 unnamed_device 1.80 996 0.16 0.00 2.97746 -107.459 -2.97746 2.97746 0.49 0.000354579 0.000307518 0.0539001 0.045999 32 3020 28 6.87369e+06 503058 586450. 2029.24 0.62 0.102429 0.0877146 2195 22 1636 2465 198885 46389 3.7624 3.7624 -136.47 -3.7624 0 0 744469. 2576.02 0.16 0.05 0.0163228 0.0142657 145 50 54 32 64 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 3.64 0.02 7248 1 0.01 -1 -1 30180 -1 -1 23 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65656 29 32 347 271 1 184 84 17 17 289 -1 unnamed_device 0.85 1023 0.16 0.00 3.28949 -110.437 -3.28949 3.28949 0.48 0.000323025 0.000283447 0.0574441 0.049795 28 2738 45 6.87369e+06 321398 531479. 1839.03 0.92 0.115741 0.0999529 2318 22 1902 3196 280560 61868 3.7011 3.7011 -139.907 -3.7011 0 0 648988. 2245.63 0.13 0.06 0.0154416 0.0134956 136 25 87 29 29 29
+ fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 5.71 0.02 7048 1 0.02 -1 -1 30036 -1 -1 21 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65548 32 32 377 289 1 202 85 17 17 289 -1 unnamed_device 2.13 944 0.16 0.00 3.44779 -122.129 -3.44779 3.44779 0.49 0.000357647 0.000313557 0.0592452 0.0515082 36 2897 24 6.87369e+06 293451 648988. 2245.63 1.54 0.145103 0.124849 2353 23 2220 4050 302877 72214 4.143 4.143 -154.904 -4.143 0 0 828058. 2865.25 0.21 0.06 0.017643 0.0155055 147 31 96 32 32 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 4.02 0.02 7128 1 0.01 -1 -1 30164 -1 -1 41 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66064 32 32 403 317 1 200 105 17 17 289 -1 unnamed_device 1.42 1062 0.19 0.00 3.1481 -104.321 -3.1481 3.1481 0.49 0.000387497 0.000326891 0.0625951 0.053913 32 3078 23 6.87369e+06 572927 586450. 2029.24 0.58 0.111386 0.096247 2348 21 1598 2526 210225 48158 3.20756 3.20756 -123.899 -3.20756 0 0 744469. 2576.02 0.15 0.05 0.0167235 0.0146611 156 61 63 32 63 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 4.37 0.02 6932 1 0.01 -1 -1 30088 -1 -1 20 27 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64676 27 32 275 232 1 146 79 17 17 289 -1 unnamed_device 1.46 754 0.20 0.00 2.71895 -86.8769 -2.71895 2.71895 0.57 0.000463591 0.000407407 0.0775213 0.0670577 34 1719 28 6.87369e+06 279477 618332. 2139.56 0.88 0.138315 0.119372 1518 19 1096 1825 123490 29656 2.92396 2.92396 -106.701 -2.92396 0 0 787024. 2723.27 0.16 0.03 0.0115748 0.0101435 101 26 54 27 27 27
+ fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 3.76 0.02 7140 1 0.01 -1 -1 30008 -1 -1 35 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65712 31 32 319 244 1 187 98 17 17 289 -1 unnamed_device 0.80 1062 0.16 0.00 2.91755 -98.5835 -2.91755 2.91755 0.49 0.00030801 0.000269142 0.0504879 0.0428331 34 2521 17 6.87369e+06 489084 618332. 2139.56 0.87 0.121759 0.104449 1999 21 1330 2096 131433 32759 2.75366 2.75366 -111.46 -2.75366 0 0 787024. 2723.27 0.24 0.07 0.026079 0.0228453 141 -1 115 31 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 4.89 0.03 7244 1 0.01 -1 -1 30024 -1 -1 16 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65184 31 32 340 294 1 154 79 17 17 289 -1 unnamed_device 2.27 809 0.12 0.00 2.45712 -88.0715 -2.45712 2.45712 0.49 0.000302669 0.000264199 0.0515978 0.0444538 30 2211 43 6.87369e+06 223581 556674. 1926.21 0.70 0.125832 0.108656 1693 21 1138 1849 128037 28561 2.73196 2.73196 -107.661 -2.73196 0 0 706193. 2443.58 0.14 0.04 0.0138543 0.0120792 103 81 0 0 84 31
+ fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 6.23 0.02 6860 1 0.01 -1 -1 29960 -1 -1 16 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65388 32 32 315 257 1 168 80 17 17 289 -1 unnamed_device 3.47 874 0.11 0.00 2.80515 -103.931 -2.80515 2.80515 0.49 0.000298115 0.000261891 0.0414059 0.0358631 34 2243 20 6.87369e+06 223581 618332. 2139.56 0.90 0.107498 0.0926033 1903 20 1410 2200 166070 38590 2.98696 2.98696 -128.78 -2.98696 0 0 787024. 2723.27 0.16 0.04 0.0131133 0.0114567 114 31 64 32 32 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 5.11 0.02 6948 1 0.01 -1 -1 30072 -1 -1 18 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65720 30 32 328 276 1 160 80 17 17 289 -1 unnamed_device 2.34 696 0.13 0.00 2.79115 -95.9889 -2.79115 2.79115 0.52 0.000362996 0.000318227 0.054567 0.0474319 34 1929 23 6.87369e+06 251529 618332. 2139.56 0.83 0.120482 0.103879 1598 21 1457 2142 151322 36719 3.20756 3.20756 -122.369 -3.20756 0 0 787024. 2723.27 0.16 0.04 0.0136311 0.0119022 109 58 30 30 60 30
+ fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 4.18 0.02 6900 1 0.01 -1 -1 30288 -1 -1 32 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65588 32 32 332 281 1 161 96 17 17 289 -1 unnamed_device 1.21 798 0.14 0.00 2.69695 -92.55 -2.69695 2.69695 0.49 0.000297327 0.000255311 0.0484814 0.0411848 34 2328 24 6.87369e+06 447163 618332. 2139.56 1.08 0.1158 0.09825 1866 23 1431 2286 184275 42699 3.01826 3.01826 -116.156 -3.01826 0 0 787024. 2723.27 0.16 0.05 0.0144484 0.0124953 116 57 25 25 64 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 7.09 0.01 7072 1 0.02 -1 -1 30084 -1 -1 35 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65680 32 32 387 306 1 195 99 17 17 289 -1 unnamed_device 4.05 992 0.15 0.00 2.84425 -102.798 -2.84425 2.84425 0.53 0.000361066 0.000303724 0.0504702 0.0431602 34 2743 25 6.87369e+06 489084 618332. 2139.56 1.06 0.127453 0.108761 2179 22 1941 3312 252084 59990 2.99796 2.99796 -123.504 -2.99796 0 0 787024. 2723.27 0.16 0.05 0.0163284 0.0142463 147 55 64 32 57 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 6.18 0.03 7204 1 0.01 -1 -1 30164 -1 -1 37 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66448 32 32 408 320 1 202 101 17 17 289 -1 unnamed_device 3.41 1084 0.19 0.00 3.43679 -123.745 -3.43679 3.43679 0.52 0.000365687 0.000322209 0.0646558 0.0551781 32 3209 31 6.87369e+06 517032 586450. 2029.24 0.73 0.132356 0.114335 2477 24 2235 3555 285593 65197 4.0287 4.0287 -151.856 -4.0287 0 0 744469. 2576.02 0.15 0.06 0.0184209 0.0161418 155 60 64 32 64 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 4.18 0.03 6880 1 0.01 -1 -1 30132 -1 -1 19 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65396 29 32 276 232 1 148 80 17 17 289 -1 unnamed_device 1.59 649 0.11 0.00 2.68595 -85.3999 -2.68595 2.68595 0.48 0.000264561 0.000231591 0.0454096 0.0391632 28 2054 22 6.87369e+06 265503 531479. 1839.03 0.60 0.0810758 0.0695366 1756 23 1308 2205 170869 42229 3.27786 3.27786 -114.797 -3.27786 0 0 648988. 2245.63 0.20 0.07 0.0211327 0.0183027 102 21 58 29 24 24
+ fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 4.80 0.03 7144 1 0.01 -1 -1 30128 -1 -1 21 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65844 32 32 402 316 1 200 85 17 17 289 -1 unnamed_device 1.85 985 0.16 0.00 2.89925 -106.252 -2.89925 2.89925 0.48 0.00037409 0.000329338 0.0638492 0.0557451 34 2994 25 6.87369e+06 293451 618332. 2139.56 0.95 0.143929 0.124775 2298 22 2082 3497 273766 63859 3.23586 3.23586 -130.603 -3.23586 0 0 787024. 2723.27 0.16 0.10 0.031267 0.0274837 145 60 64 32 62 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 6.32 0.02 7216 1 0.02 -1 -1 30104 -1 -1 38 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65964 32 32 384 304 1 193 102 17 17 289 -1 unnamed_device 3.85 1048 0.17 0.00 2.87545 -105.391 -2.87545 2.87545 0.49 0.000345626 0.000304362 0.0594554 0.0511522 32 2734 23 6.87369e+06 531006 586450. 2029.24 0.55 0.105544 0.0909399 2276 22 1682 2584 218017 47865 2.98516 2.98516 -126.955 -2.98516 0 0 744469. 2576.02 0.15 0.05 0.0163205 0.0142479 148 54 64 32 56 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 5.74 0.02 6976 1 0.02 -1 -1 29972 -1 -1 29 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65464 32 32 340 285 1 165 93 17 17 289 -1 unnamed_device 2.13 649 0.13 0.00 2.32871 -82.8655 -2.32871 2.32871 0.49 0.000312925 0.000272201 0.0496522 0.0420065 36 2014 25 6.87369e+06 405241 648988. 2245.63 1.65 0.140056 0.119387 1423 20 1199 1932 116498 31970 2.29112 2.29112 -94.3697 -2.29112 0 0 828058. 2865.25 0.16 0.04 0.01371 0.0117285 117 62 29 29 64 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 3.17 0.02 6816 1 0.01 -1 -1 29884 -1 -1 14 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65476 30 32 229 211 1 117 76 17 17 289 -1 unnamed_device 0.53 483 0.08 0.00 2.13741 -70.4089 -2.13741 2.13741 0.50 0.000229578 0.000198207 0.0352762 0.0301005 34 1479 20 6.87369e+06 195634 618332. 2139.56 0.77 0.0826242 0.0703301 1192 19 755 1068 79739 20655 2.11082 2.11082 -84.8531 -2.11082 0 0 787024. 2723.27 0.16 0.03 0.00940315 0.00816481 73 29 24 24 30 30
+ fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 4.73 0.02 7012 1 0.01 -1 -1 30212 -1 -1 17 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65312 31 32 337 282 1 165 80 17 17 289 -1 unnamed_device 1.77 855 0.15 0.00 3.35199 -107.837 -3.35199 3.35199 0.57 0.000393194 0.000350744 0.0594913 0.0514091 32 2447 33 6.87369e+06 237555 586450. 2029.24 0.67 0.115828 0.100341 1974 20 1177 1795 176749 38938 3.4115 3.4115 -129.233 -3.4115 0 0 744469. 2576.02 0.22 0.07 0.0258296 0.0224135 113 55 31 31 62 31
+ fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 5.22 0.03 7344 1 0.01 -1 -1 30024 -1 -1 36 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66088 32 32 367 284 1 197 100 17 17 289 -1 unnamed_device 0.82 922 0.16 0.00 3.29869 -110.296 -3.29869 3.29869 0.48 0.000342124 0.000302312 0.0599879 0.0517793 36 2645 42 6.87369e+06 503058 648988. 2245.63 2.45 0.153283 0.131069 1911 20 1595 2332 170495 47125 3.7014 3.7014 -137.719 -3.7014 0 0 828058. 2865.25 0.17 0.05 0.01565 0.0135441 150 31 91 32 32 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 5.88 0.03 7192 1 0.02 -1 -1 30536 -1 -1 40 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66332 32 32 461 376 1 199 104 17 17 289 -1 unnamed_device 2.86 961 0.16 0.00 3.06976 -103.067 -3.06976 3.06976 0.48 0.000381054 0.000333927 0.0524455 0.0448008 34 2746 23 6.87369e+06 558954 618332. 2139.56 1.07 0.136041 0.116592 2283 23 1613 2463 189091 45591 3.8487 3.8487 -133.098 -3.8487 0 0 787024. 2723.27 0.16 0.05 0.0191838 0.0168174 154 108 0 0 125 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 4.04 0.02 6748 1 0.01 -1 -1 30176 -1 -1 16 26 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64888 26 32 205 193 1 109 74 17 17 289 -1 unnamed_device 1.72 423 0.08 0.00 2.11541 -60.9999 -2.11541 2.11541 0.49 0.000211435 0.000181605 0.0340411 0.0289179 30 1214 25 6.87369e+06 223581 556674. 1926.21 0.53 0.0619648 0.0526045 926 17 552 825 47023 12379 2.06882 2.06882 -74.257 -2.06882 0 0 706193. 2443.58 0.15 0.02 0.00803258 0.00697562 69 21 26 26 22 22
+ fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 3.85 0.03 7180 1 0.01 -1 -1 30004 -1 -1 21 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65748 32 32 334 252 1 196 85 17 17 289 -1 unnamed_device 1.15 975 0.16 0.00 3.28949 -112.784 -3.28949 3.28949 0.57 0.00033131 0.00029227 0.0596189 0.0517996 30 2769 34 6.87369e+06 293451 556674. 1926.21 0.70 0.109762 0.0950255 2044 22 1520 2553 148028 36321 3.8264 3.8264 -141.468 -3.8264 0 0 706193. 2443.58 0.14 0.04 0.0154028 0.0133666 141 -1 122 32 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 3.32 0.02 6796 1 0.01 -1 -1 29884 -1 -1 12 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65032 32 32 200 183 1 122 76 17 17 289 -1 unnamed_device 0.43 725 0.09 0.00 1.87558 -76.3388 -1.87558 1.87558 0.55 0.000220775 0.000190651 0.0356724 0.0303736 34 1523 18 6.87369e+06 167686 618332. 2139.56 0.87 0.0881752 0.0750416 1406 20 708 941 73235 17125 2.06112 2.06112 -93.8409 -2.06112 0 0 787024. 2723.27 0.19 0.03 0.0113502 0.00979651 71 -1 53 32 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 4.06 0.04 7112 1 0.01 -1 -1 30284 -1 -1 36 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65928 32 32 377 289 1 202 100 17 17 289 -1 unnamed_device 0.94 992 0.15 0.00 3.45399 -119.737 -3.45399 3.45399 0.48 0.000341968 0.000301141 0.0495843 0.0425265 28 2833 26 6.87369e+06 503058 531479. 1839.03 1.20 0.101604 0.0872075 2370 24 2159 3245 282500 63251 4.16501 4.16501 -159.65 -4.16501 0 0 648988. 2245.63 0.13 0.06 0.0174876 0.0152771 155 21 96 32 32 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 3.59 0.02 7016 1 0.01 -1 -1 30000 -1 -1 36 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65384 32 32 338 254 1 198 100 17 17 289 -1 unnamed_device 0.88 1090 0.20 0.00 2.78315 -101.957 -2.78315 2.78315 0.55 0.000332144 0.000287809 0.0659565 0.0563696 32 2751 24 6.87369e+06 503058 586450. 2029.24 0.63 0.115382 0.0992076 2179 23 1629 2621 190449 45282 2.83196 2.83196 -118.955 -2.83196 0 0 744469. 2576.02 0.15 0.05 0.0159327 0.0138326 151 -1 124 32 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 4.14 0.03 7228 1 0.01 -1 -1 30344 -1 -1 39 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66028 32 32 408 320 1 202 103 17 17 289 -1 unnamed_device 0.98 1002 0.16 0.00 3.32249 -114.63 -3.32249 3.32249 0.49 0.000364196 0.000321125 0.0514754 0.0441703 28 3184 33 6.87369e+06 544980 531479. 1839.03 1.21 0.110188 0.0945159 2538 21 2007 3375 304473 71036 3.9097 3.9097 -150.018 -3.9097 0 0 648988. 2245.63 0.14 0.06 0.0168532 0.0147761 156 54 64 32 64 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 3.97 0.03 6872 1 0.01 -1 -1 30020 -1 -1 15 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65460 32 32 295 247 1 157 79 17 17 289 -1 unnamed_device 0.90 887 0.15 0.00 2.42892 -92.5261 -2.42892 2.42892 0.59 0.000412545 0.000353499 0.0576156 0.0495455 34 2233 21 6.87369e+06 209608 618332. 2139.56 0.95 0.120702 0.103436 1891 22 1236 2036 165417 37351 2.82396 2.82396 -116.527 -2.82396 0 0 787024. 2723.27 0.16 0.04 0.0132694 0.0115594 104 31 54 32 32 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 4.47 0.03 6988 1 0.01 -1 -1 30048 -1 -1 18 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65520 30 32 299 247 1 160 80 17 17 289 -1 unnamed_device 1.42 604 0.11 0.00 3.0026 -92.1589 -3.0026 3.0026 0.49 0.000292029 0.000254928 0.0475527 0.040997 34 2338 26 6.87369e+06 251529 618332. 2139.56 1.13 0.116726 0.0998676 1600 20 1398 2146 173582 45392 3.11056 3.11056 -121.399 -3.11056 0 0 787024. 2723.27 0.16 0.04 0.0130883 0.0111586 110 29 60 30 30 30
+ fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 3.68 0.03 7060 1 0.01 -1 -1 30064 -1 -1 19 28 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65480 28 32 283 237 1 150 79 17 17 289 -1 unnamed_device 0.86 647 0.12 0.00 2.85525 -88.7592 -2.85525 2.85525 0.48 0.000278132 0.000244187 0.0508915 0.044018 34 1994 43 6.87369e+06 265503 618332. 2139.56 0.95 0.121136 0.103689 1474 20 1245 2035 133705 34673 3.58976 3.58976 -108.446 -3.58976 0 0 787024. 2723.27 0.16 0.04 0.0122122 0.0106362 104 27 56 28 28 28
+ fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 3.98 0.02 6848 1 0.01 -1 -1 30012 -1 -1 16 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65452 32 32 284 226 1 168 80 17 17 289 -1 unnamed_device 1.13 858 0.13 0.00 2.77395 -104.497 -2.77395 2.77395 0.51 0.000285531 0.000250675 0.0459753 0.0398783 34 2368 24 6.87369e+06 223581 618332. 2139.56 0.93 0.109538 0.0941041 2013 21 1602 2652 207576 47528 3.08856 3.08856 -128.549 -3.08856 0 0 787024. 2723.27 0.16 0.05 0.0132029 0.0115311 114 -1 96 32 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 3.09 0.03 6872 1 0.01 -1 -1 30200 -1 -1 32 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65600 31 32 305 251 1 163 95 17 17 289 -1 unnamed_device 0.67 755 0.15 0.00 2.82225 -97.0748 -2.82225 2.82225 0.49 0.000294312 0.000246487 0.0485485 0.0411757 30 2147 23 6.87369e+06 447163 556674. 1926.21 0.54 0.0860699 0.0734133 1619 22 1112 1800 113503 27352 2.98226 2.98226 -112.758 -2.98226 0 0 706193. 2443.58 0.14 0.04 0.0131203 0.0114754 119 26 61 31 31 31
+ fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 5.01 0.03 7084 1 0.01 -1 -1 30108 -1 -1 32 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65664 29 32 316 268 1 155 93 17 17 289 -1 unnamed_device 2.38 755 0.13 0.00 2.29571 -79.3561 -2.29571 2.29571 0.49 0.000301446 0.000252269 0.0454029 0.0382134 26 2190 22 6.87369e+06 447163 503264. 1741.40 0.77 0.0850054 0.0718163 1863 19 1248 2018 175266 39643 2.39442 2.39442 -101.873 -2.39442 0 0 618332. 2139.56 0.13 0.04 0.0123826 0.0107687 113 55 29 29 57 29
+ fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 7.00 0.03 7180 1 0.01 -1 -1 30192 -1 -1 44 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66116 32 32 424 311 1 231 108 17 17 289 -1 unnamed_device 3.53 1275 0.22 0.00 3.42579 -122.48 -3.42579 3.42579 0.50 0.000390678 0.000344247 0.0690918 0.0593834 34 3215 27 6.87369e+06 614849 618332. 2139.56 1.38 0.159785 0.137444 2562 21 2085 3534 242108 58130 3.9034 3.9034 -151.467 -3.9034 0 0 787024. 2723.27 0.16 0.06 0.018166 0.0160308 184 26 128 32 27 27
+ fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 5.12 0.03 7228 1 0.01 -1 -1 30044 -1 -1 39 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65668 32 32 404 318 1 200 103 17 17 289 -1 unnamed_device 2.60 1018 0.19 0.00 2.91945 -106.055 -2.91945 2.91945 0.48 0.000380863 0.000321421 0.0627013 0.0535433 32 2598 23 6.87369e+06 544980 586450. 2029.24 0.55 0.111648 0.0960337 2090 20 1753 2597 206267 46747 3.02726 3.02726 -123.513 -3.02726 0 0 744469. 2576.02 0.15 0.05 0.0164135 0.0144162 154 62 62 32 64 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 5.89 0.03 6916 1 0.01 -1 -1 30188 -1 -1 31 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65216 31 32 355 304 1 160 94 17 17 289 -1 unnamed_device 3.06 848 0.15 0.00 2.78925 -96.5614 -2.78925 2.78925 0.49 0.000297536 0.000257833 0.0507906 0.0431016 34 2088 22 6.87369e+06 433189 618332. 2139.56 0.93 0.115659 0.0983394 1872 21 1242 1990 157112 36196 3.01961 3.01961 -115.752 -3.01961 0 0 787024. 2723.27 0.16 0.04 0.0133564 0.0115791 116 77 0 0 89 31
+ fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 5.88 0.03 7136 1 0.01 -1 -1 30084 -1 -1 23 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65872 31 32 393 311 1 195 86 17 17 289 -1 unnamed_device 2.22 826 0.14 0.00 2.90845 -97.4522 -2.90845 2.90845 0.49 0.000351925 0.000310459 0.0590322 0.0514519 36 2592 26 6.87369e+06 321398 648988. 2245.63 1.51 0.141697 0.122227 1720 22 1767 2909 195551 49121 3.08126 3.08126 -121.69 -3.08126 0 0 828058. 2865.25 0.24 0.06 0.0193711 0.0170507 142 59 60 30 62 31
+ fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 7.51 0.02 7336 1 0.01 -1 -1 30340 -1 -1 22 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65844 31 32 457 373 1 198 85 17 17 289 -1 unnamed_device 4.41 1103 0.18 0.00 3.93354 -126.09 -3.93354 3.93354 0.48 0.000392789 0.000346235 0.0701212 0.0608945 34 2936 22 6.87369e+06 307425 618332. 2139.56 1.14 0.155092 0.13361 2547 19 1749 2821 255104 57503 4.21865 4.21865 -157.446 -4.21865 0 0 787024. 2723.27 0.16 0.06 0.0169836 0.0148439 145 111 0 0 124 31
+ fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 5.35 0.02 7300 1 0.02 -1 -1 30248 -1 -1 22 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65992 31 32 415 335 1 195 85 17 17 289 -1 unnamed_device 1.76 855 0.16 0.00 3.73124 -109.485 -3.73124 3.73124 0.50 0.000375658 0.000327407 0.0666455 0.057135 34 2853 45 6.87369e+06 307425 618332. 2139.56 1.55 0.166131 0.14215 2046 23 1782 2919 236558 56066 4.04135 4.04135 -139.054 -4.04135 0 0 787024. 2723.27 0.16 0.05 0.0184457 0.0161746 141 86 31 31 89 31
+ fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 5.10 0.03 7260 1 0.01 -1 -1 30176 -1 -1 35 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66332 31 32 393 311 1 195 98 17 17 289 -1 unnamed_device 2.17 1026 0.18 0.00 2.86625 -101.811 -2.86625 2.86625 0.48 0.000366812 0.000308322 0.0621875 0.0529372 34 2667 23 6.87369e+06 489084 618332. 2139.56 0.93 0.140066 0.1201 2178 22 1946 3325 230117 55701 3.02626 3.02626 -121.098 -3.02626 0 0 787024. 2723.27 0.16 0.05 0.0168523 0.0147538 148 58 60 31 62 31
+ fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 6.11 0.02 7352 1 0.02 -1 -1 30444 -1 -1 38 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65968 32 32 408 320 1 202 102 17 17 289 -1 unnamed_device 2.03 1022 0.21 0.00 3.44779 -120.895 -3.44779 3.44779 0.60 0.000355828 0.000310387 0.0686415 0.0588041 34 2968 48 6.87369e+06 531006 618332. 2139.56 1.83 0.18785 0.16169 2174 23 2036 3332 260448 59828 3.9144 3.9144 -148.741 -3.9144 0 0 787024. 2723.27 0.16 0.06 0.0171886 0.0147938 156 42 64 32 64 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 6.14 0.03 7244 1 0.02 -1 -1 30312 -1 -1 42 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66472 32 32 497 381 1 234 106 17 17 289 -1 unnamed_device 2.99 1063 0.22 0.00 3.46499 -119.224 -3.46499 3.46499 0.48 0.000426256 0.000378276 0.0746064 0.0645072 34 3091 33 6.87369e+06 586901 618332. 2139.56 1.09 0.175434 0.151748 2283 22 2113 3461 220076 54625 3.8924 3.8924 -143.1 -3.8924 0 0 787024. 2723.27 0.16 0.06 0.0206193 0.0181719 186 91 62 32 96 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 5.06 0.02 7028 1 0.01 -1 -1 30144 -1 -1 17 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65124 31 32 307 252 1 164 80 17 17 289 -1 unnamed_device 2.06 667 0.12 0.00 2.76295 -96.5169 -2.76295 2.76295 0.49 0.000289809 0.000253166 0.0463031 0.0401127 34 2229 37 6.87369e+06 237555 618332. 2139.56 1.05 0.1178 0.101329 1636 20 1391 2271 166597 39338 3.04656 3.04656 -119.579 -3.04656 0 0 787024. 2723.27 0.16 0.04 0.0128654 0.0112695 112 24 62 31 31 31
+ fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 5.63 0.03 7188 1 0.01 -1 -1 30168 -1 -1 37 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65844 31 32 397 313 1 198 100 17 17 289 -1 unnamed_device 2.40 934 0.19 0.00 3.42579 -114.6 -3.42579 3.42579 0.48 0.000345308 0.000303049 0.0592212 0.0506887 34 2690 26 6.87369e+06 517032 618332. 2139.56 1.25 0.138159 0.118215 2089 22 1866 2981 215947 51130 3.8594 3.8594 -137.709 -3.8594 0 0 787024. 2723.27 0.16 0.05 0.0162866 0.0142878 152 59 62 31 62 31
+ fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 4.98 0.03 7208 1 0.01 -1 -1 30348 -1 -1 35 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65920 32 32 398 314 1 198 99 17 17 289 -1 unnamed_device 1.97 1038 0.18 0.00 2.86625 -102.443 -2.86625 2.86625 0.49 0.000378607 0.000315048 0.0592914 0.0503391 32 3543 35 6.87369e+06 489084 586450. 2029.24 0.70 0.113716 0.0973403 2573 25 2092 3704 346797 78017 3.11856 3.11856 -125.365 -3.11856 0 0 744469. 2576.02 0.15 0.07 0.0183826 0.0160479 150 54 62 32 62 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 4.19 0.03 7024 1 0.01 -1 -1 30040 -1 -1 21 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65536 32 32 346 258 1 202 85 17 17 289 -1 unnamed_device 0.78 1152 0.20 0.00 3.32249 -122.755 -3.32249 3.32249 0.56 0.000480463 0.000417317 0.0696002 0.0599899 34 3145 25 6.87369e+06 293451 618332. 2139.56 1.25 0.162152 0.139449 2522 23 2022 3579 281402 64720 4.2543 4.2543 -162.356 -4.2543 0 0 787024. 2723.27 0.16 0.06 0.0167328 0.0147152 147 -1 128 32 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 6.26 0.02 7068 1 0.02 -1 -1 30320 -1 -1 36 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66220 32 32 425 344 1 195 100 17 17 289 -1 unnamed_device 3.38 963 0.18 0.00 2.84425 -101.38 -2.84425 2.84425 0.48 0.000363014 0.000319211 0.0616928 0.0527263 30 3019 38 6.87369e+06 503058 556674. 1926.21 0.89 0.123395 0.105238 2012 20 1458 2343 143093 34743 2.96496 2.96496 -121.461 -2.96496 0 0 706193. 2443.58 0.14 0.04 0.0154855 0.0136286 148 81 25 25 96 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 6.63 0.03 7232 1 0.02 -1 -1 30104 -1 -1 39 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66196 32 32 396 312 1 198 103 17 17 289 -1 unnamed_device 3.12 1098 0.19 0.00 2.77395 -102.887 -2.77395 2.77395 0.59 0.000385025 0.000336018 0.0607663 0.0517446 26 3054 36 6.87369e+06 544980 503264. 1741.40 1.21 0.119675 0.102206 2738 24 1964 3546 351671 77597 3.24686 3.24686 -135.849 -3.24686 0 0 618332. 2139.56 0.20 0.12 0.0355283 0.0313233 152 58 64 32 60 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 5.21 0.02 7140 1 0.01 -1 -1 30144 -1 -1 40 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66328 32 32 406 319 1 201 104 17 17 289 -1 unnamed_device 2.64 1072 0.18 0.00 2.85525 -103.547 -2.85525 2.85525 0.52 0.000383896 0.000318284 0.0593818 0.0505819 32 2825 25 6.87369e+06 558954 586450. 2029.24 0.58 0.109714 0.0942537 2177 21 1888 3020 237243 55116 2.86466 2.86466 -122.121 -2.86466 0 0 744469. 2576.02 0.15 0.05 0.0170787 0.0150323 156 61 63 32 64 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 4.05 0.03 7204 1 0.01 -1 -1 30272 -1 -1 39 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66056 32 32 377 289 1 202 103 17 17 289 -1 unnamed_device 0.80 960 0.18 0.00 3.39279 -118.094 -3.39279 3.39279 0.49 0.000344956 0.000299747 0.0587136 0.0504108 34 2949 39 6.87369e+06 544980 618332. 2139.56 1.25 0.14966 0.128539 2258 23 2091 3400 259102 62373 3.9847 3.9847 -149.883 -3.9847 0 0 787024. 2723.27 0.16 0.06 0.0167084 0.0146323 156 21 96 32 32 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 6.08 0.02 7084 1 0.01 -1 -1 30292 -1 -1 41 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66388 32 32 408 320 1 202 105 17 17 289 -1 unnamed_device 2.94 871 0.16 0.00 3.42579 -115.463 -3.42579 3.42579 0.50 0.000377411 0.000313581 0.0524393 0.0446731 34 2396 25 6.87369e+06 572927 618332. 2139.56 1.16 0.139328 0.119586 1888 22 2002 3216 227228 56270 3.8174 3.8174 -136.77 -3.8174 0 0 787024. 2723.27 0.16 0.05 0.0165542 0.0144991 157 50 64 32 64 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 7.21 0.02 7192 1 0.02 -1 -1 30320 -1 -1 37 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66372 31 32 451 369 1 195 100 17 17 289 -1 unnamed_device 3.42 1149 0.16 0.00 3.37079 -115.647 -3.37079 3.37079 0.48 0.000372388 0.000326343 0.0529013 0.0452365 26 3456 39 6.87369e+06 517032 503264. 1741.40 1.79 0.117351 0.100159 2675 24 1890 3267 314883 67828 4.0833 4.0833 -149.439 -4.0833 0 0 618332. 2139.56 0.15 0.08 0.0254488 0.0220623 150 110 0 0 122 31
+ fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 5.90 0.02 7256 1 0.02 -1 -1 30292 -1 -1 21 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66176 32 32 433 347 1 200 85 17 17 289 -1 unnamed_device 2.93 938 0.17 0.00 3.25649 -112.058 -3.25649 3.25649 0.48 0.000389555 0.000345325 0.0663584 0.0580169 34 2923 28 6.87369e+06 293451 618332. 2139.56 1.04 0.152561 0.132238 2212 22 1918 3517 260638 62765 4.036 4.036 -140.944 -4.036 0 0 787024. 2723.27 0.16 0.06 0.0179878 0.0158079 145 86 32 32 94 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 3.26 0.01 7000 1 0.01 -1 -1 30232 -1 -1 32 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65332 32 32 313 256 1 167 96 17 17 289 -1 unnamed_device 0.76 902 0.14 0.00 2.82225 -102.943 -2.82225 2.82225 0.48 0.000292066 0.000256042 0.047697 0.040898 28 2418 23 6.87369e+06 447163 531479. 1839.03 0.67 0.0897988 0.0769131 2097 18 1384 2130 162744 38859 2.97296 2.97296 -125.651 -2.97296 0 0 648988. 2245.63 0.14 0.04 0.0116512 0.0101458 121 20 63 32 32 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 5.49 0.02 6980 1 0.01 -1 -1 30012 -1 -1 16 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65368 32 32 371 315 1 166 80 17 17 289 -1 unnamed_device 2.63 846 0.13 0.00 2.79115 -101.902 -2.79115 2.79115 0.50 0.000322133 0.00028252 0.0502896 0.043687 34 2583 27 6.87369e+06 223581 618332. 2139.56 0.95 0.124305 0.106672 2006 22 1576 2511 198726 46442 3.03526 3.03526 -128.546 -3.03526 0 0 787024. 2723.27 0.16 0.05 0.015225 0.0132535 112 91 0 0 94 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 5.69 0.03 7256 1 0.01 -1 -1 30468 -1 -1 44 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66616 32 32 470 352 1 236 108 17 17 289 -1 unnamed_device 2.11 1368 0.24 0.00 3.98354 -140.098 -3.98354 3.98354 0.50 0.00041303 0.000364304 0.0729185 0.0630035 34 3221 34 6.87369e+06 614849 618332. 2139.56 1.47 0.175017 0.151045 2560 24 2400 4238 270597 67948 4.64255 4.64255 -172.175 -4.64255 0 0 787024. 2723.27 0.16 0.06 0.0209873 0.0184456 189 53 96 32 64 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 5.16 0.02 7196 1 0.01 -1 -1 30128 -1 -1 35 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65808 32 32 369 285 1 198 99 17 17 289 -1 unnamed_device 2.33 854 0.14 0.00 2.87545 -98.0921 -2.87545 2.87545 0.48 0.000363311 0.000305575 0.0494571 0.0419879 34 2166 20 6.87369e+06 489084 618332. 2139.56 0.91 0.122689 0.104857 1632 23 1386 2197 125632 33953 2.92116 2.92116 -115.93 -2.92116 0 0 787024. 2723.27 0.16 0.04 0.0168367 0.014759 150 31 92 32 32 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 3.41 0.02 6916 1 0.01 -1 -1 29984 -1 -1 31 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65332 30 32 299 247 1 160 93 17 17 289 -1 unnamed_device 0.55 821 0.13 0.00 2.75195 -96.6189 -2.75195 2.75195 0.48 0.000291685 0.000253814 0.043218 0.0368077 26 2303 26 6.87369e+06 433189 503264. 1741.40 0.96 0.0861067 0.0734411 2076 24 1540 2388 215819 49820 3.43316 3.43316 -132.038 -3.43316 0 0 618332. 2139.56 0.13 0.06 0.0164007 0.0141545 116 29 60 30 30 30
+ fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 8.14 0.03 7316 1 0.02 -1 -1 30592 -1 -1 47 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 67372 32 32 532 414 1 236 111 17 17 289 -1 unnamed_device 5.41 1224 0.21 0.00 3.91024 -137.03 -3.91024 3.91024 0.49 0.000436145 0.000385485 0.0658495 0.0565709 30 3176 25 6.87369e+06 656770 556674. 1926.21 0.69 0.12892 0.110873 2441 21 2016 3295 186487 45085 4.49125 4.49125 -169.413 -4.49125 0 0 706193. 2443.58 0.14 0.05 0.0198953 0.0174992 190 109 32 32 128 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 5.69 0.04 7188 1 0.01 -1 -1 30076 -1 -1 40 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66024 32 32 377 289 1 202 104 17 17 289 -1 unnamed_device 2.76 996 0.18 0.00 3.42399 -121.225 -3.42399 3.42399 0.49 0.0003439 0.000302835 0.0587115 0.0501596 34 2463 22 6.87369e+06 558954 618332. 2139.56 0.94 0.136611 0.117732 2051 24 1963 2960 202523 48416 3.8094 3.8094 -145.409 -3.8094 0 0 787024. 2723.27 0.16 0.05 0.0175792 0.0154092 156 31 96 32 32 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 3.12 0.03 6908 1 0.02 -1 -1 30080 -1 -1 33 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65580 32 32 284 226 1 168 97 17 17 289 -1 unnamed_device 0.59 869 0.18 0.00 2.86625 -104.768 -2.86625 2.86625 0.49 0.000311263 0.000261908 0.0581441 0.0495835 30 2247 21 6.87369e+06 461137 556674. 1926.21 0.54 0.0955977 0.0817144 1826 22 1316 2187 127083 30831 2.95696 2.95696 -122.642 -2.95696 0 0 706193. 2443.58 0.15 0.04 0.0127922 0.0112271 123 -1 96 32 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 6.80 0.03 7340 1 0.01 -1 -1 30364 -1 -1 45 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65868 32 32 439 321 1 236 109 17 17 289 -1 unnamed_device 2.77 1249 0.23 0.00 3.87104 -134.602 -3.87104 3.87104 0.50 0.000413222 0.000364016 0.0700452 0.0602954 36 3146 21 6.87369e+06 628823 648988. 2245.63 1.95 0.161208 0.138362 2561 22 2408 3927 294436 65239 4.41895 4.41895 -165.458 -4.41895 0 0 828058. 2865.25 0.16 0.06 0.0187728 0.0165245 189 26 128 32 32 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 3.83 0.02 6800 1 0.01 -1 -1 29976 -1 -1 16 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65500 32 32 284 226 1 168 80 17 17 289 -1 unnamed_device 1.03 875 0.11 0.00 2.77395 -105.374 -2.77395 2.77395 0.53 0.000292025 0.000252853 0.0409065 0.0354046 34 2203 21 6.87369e+06 223581 618332. 2139.56 0.89 0.103029 0.0883155 2004 20 1510 2482 203597 45523 3.00426 3.00426 -128.972 -3.00426 0 0 787024. 2723.27 0.16 0.05 0.0125078 0.0108928 114 -1 96 32 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 4.50 0.02 6928 1 0.02 -1 -1 30076 -1 -1 33 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65648 30 32 299 247 1 162 95 17 17 289 -1 unnamed_device 2.14 790 0.14 0.00 2.84425 -96.5666 -2.84425 2.84425 0.48 0.000292454 0.000254934 0.0471461 0.0403682 30 1932 23 6.87369e+06 461137 556674. 1926.21 0.50 0.0842441 0.0722932 1579 21 1041 1657 106478 24830 2.69236 2.69236 -109.697 -2.69236 0 0 706193. 2443.58 0.15 0.03 0.0126319 0.0110617 119 29 60 30 30 30
+ fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 5.54 0.02 7112 1 0.01 -1 -1 30240 -1 -1 35 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65768 29 32 397 323 1 185 96 17 17 289 -1 unnamed_device 2.83 948 0.19 0.00 2.81125 -92.4154 -2.81125 2.81125 0.49 0.000358012 0.000314596 0.0660595 0.0567628 28 2601 25 6.87369e+06 489084 531479. 1839.03 0.74 0.116682 0.0999776 2239 25 1943 3356 278024 64306 3.33286 3.33286 -120.919 -3.33286 0 0 648988. 2245.63 0.14 0.06 0.0183186 0.0158598 141 81 29 29 85 29
+ fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 5.59 0.02 7024 1 0.01 -1 -1 30232 -1 -1 21 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65620 32 32 408 320 1 202 85 17 17 289 -1 unnamed_device 2.69 963 0.16 0.00 3.36169 -121.715 -3.36169 3.36169 0.48 0.000371569 0.000328297 0.0636734 0.0556795 34 2560 20 6.87369e+06 293451 618332. 2139.56 0.95 0.141245 0.12274 2061 22 2017 3079 249692 54738 3.703 3.703 -146.832 -3.703 0 0 787024. 2723.27 0.16 0.05 0.0174149 0.0153672 147 53 64 32 64 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 6.99 0.03 7188 1 0.02 -1 -1 30292 -1 -1 37 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65920 32 32 408 320 1 202 101 17 17 289 -1 unnamed_device 3.80 922 0.18 0.00 3.43679 -119.485 -3.43679 3.43679 0.49 0.000363874 0.000319501 0.0613683 0.0529226 34 2728 26 6.87369e+06 517032 618332. 2139.56 1.17 0.143559 0.123546 2050 24 2176 3668 271554 66022 3.9034 3.9034 -147.177 -3.9034 0 0 787024. 2723.27 0.16 0.06 0.0185927 0.0163229 155 55 64 32 64 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 5.42 0.02 6956 1 0.01 -1 -1 30196 -1 -1 33 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65684 32 32 346 288 1 168 97 17 17 289 -1 unnamed_device 2.73 775 0.15 0.00 2.87725 -102.798 -2.87725 2.87725 0.50 0.00030614 0.000267909 0.0498481 0.0426217 30 2209 37 6.87369e+06 461137 556674. 1926.21 0.79 0.103961 0.0888427 1602 20 1249 1906 116032 28831 2.88526 2.88526 -116.094 -2.88526 0 0 706193. 2443.58 0.14 0.04 0.0131818 0.0115334 123 55 32 32 64 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 6.46 0.02 6968 1 0.02 -1 -1 30188 -1 -1 18 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65352 31 32 355 304 1 160 81 17 17 289 -1 unnamed_device 3.47 769 0.13 0.00 2.71895 -94.9409 -2.71895 2.71895 0.48 0.00031259 0.000272946 0.0538545 0.0465569 28 2662 38 6.87369e+06 251529 531479. 1839.03 1.11 0.105335 0.0902773 2106 24 1504 2738 252834 56977 3.53676 3.53676 -125.727 -3.53676 0 0 648988. 2245.63 0.13 0.06 0.0168022 0.0144734 108 82 0 0 89 31
+ fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 5.35 0.02 7036 1 0.01 -1 -1 30288 -1 -1 34 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65940 30 32 377 300 1 189 96 17 17 289 -1 unnamed_device 2.43 988 0.17 0.00 2.75195 -96.1177 -2.75195 2.75195 0.49 0.00033649 0.000294648 0.0567968 0.0487882 26 2753 31 6.87369e+06 475111 503264. 1741.40 1.03 0.108911 0.0935447 2433 22 1720 2793 258960 59438 3.20316 3.20316 -125.782 -3.20316 0 0 618332. 2139.56 0.13 0.06 0.0160084 0.0139496 143 52 60 30 57 30
+ fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 4.17 0.02 7048 1 0.01 -1 -1 30196 -1 -1 35 28 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65288 28 32 337 265 1 180 95 17 17 289 -1 unnamed_device 1.49 800 0.17 0.00 3.39279 -101.676 -3.39279 3.39279 0.49 0.000324211 0.000282372 0.0568094 0.0486419 32 2736 39 6.87369e+06 489084 586450. 2029.24 0.74 0.107374 0.0921419 1930 21 1571 2660 236130 53759 4.11 4.11 -131.831 -4.11 0 0 744469. 2576.02 0.15 0.05 0.0140816 0.0122528 139 20 84 28 28 28
+ fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 4.98 0.03 6948 1 0.01 -1 -1 30064 -1 -1 18 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65656 30 32 328 276 1 161 80 17 17 289 -1 unnamed_device 2.23 856 0.12 0.00 2.75195 -97.2328 -2.75195 2.75195 0.48 0.0003209 0.000281982 0.046936 0.0406886 34 2040 19 6.87369e+06 251529 618332. 2139.56 0.86 0.110338 0.0950373 1828 19 1311 2174 162707 37858 2.97426 2.97426 -117.952 -2.97426 0 0 787024. 2723.27 0.16 0.04 0.0131534 0.0113639 110 58 30 30 60 30
+ fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 6.35 0.02 6908 1 0.01 -1 -1 30076 -1 -1 17 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65412 32 32 362 309 1 163 81 17 17 289 -1 unnamed_device 2.74 729 0.11 0.00 2.72515 -92.4606 -2.72515 2.72515 0.49 0.000317197 0.00027724 0.0502598 0.0435053 36 2450 43 6.87369e+06 237555 648988. 2245.63 1.70 0.135627 0.115584 1671 27 1494 2440 171119 43238 2.97226 2.97226 -114.535 -2.97226 0 0 828058. 2865.25 0.17 0.05 0.0173249 0.0150313 110 88 0 0 91 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 3.34 0.03 7216 1 0.01 -1 -1 30072 -1 -1 37 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65240 31 32 337 253 1 197 100 17 17 289 -1 unnamed_device 0.71 987 0.19 0.00 3.42579 -115.517 -3.42579 3.42579 0.52 0.000327334 0.000287947 0.0587013 0.0504015 30 2938 27 6.87369e+06 517032 556674. 1926.21 0.65 0.106598 0.0918233 1963 19 1536 2503 129653 32600 3.7671 3.7671 -138.338 -3.7671 0 0 706193. 2443.58 0.15 0.04 0.0139126 0.0123943 151 -1 124 31 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 7.43 0.02 7164 1 0.02 -1 -1 30352 -1 -1 38 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65764 32 32 408 320 1 202 102 17 17 289 -1 unnamed_device 4.35 983 0.17 0.00 3.44779 -118.764 -3.44779 3.44779 0.48 0.000360636 0.000317826 0.0535032 0.0458203 28 3126 33 6.87369e+06 531006 531479. 1839.03 1.07 0.111214 0.094922 2556 23 2141 3814 324046 73870 4.0147 4.0147 -156.986 -4.0147 0 0 648988. 2245.63 0.16 0.08 0.0221001 0.019184 156 57 64 32 64 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 8.09 0.03 7092 1 0.02 -1 -1 30060 -1 -1 37 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66084 32 32 408 320 1 202 101 17 17 289 -1 unnamed_device 3.37 975 0.18 0.00 3.44779 -118.929 -3.44779 3.44779 0.48 0.000376514 0.000330742 0.0635618 0.0550424 36 3038 37 6.87369e+06 517032 648988. 2245.63 2.73 0.160194 0.137862 2206 22 2008 3337 206695 53745 4.165 4.165 -150.482 -4.165 0 0 828058. 2865.25 0.16 0.05 0.0174251 0.0153916 155 62 64 32 64 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 6.63 0.02 7348 1 0.01 -1 -1 30200 -1 -1 39 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66136 32 32 400 316 1 198 103 17 17 289 -1 unnamed_device 2.60 885 0.16 0.00 3.38179 -110.583 -3.38179 3.38179 0.53 0.00039404 0.000332607 0.0504317 0.0430123 36 2313 25 6.87369e+06 544980 648988. 2245.63 1.98 0.139064 0.11865 1976 22 1636 2826 191196 47281 3.6884 3.6884 -130.452 -3.6884 0 0 828058. 2865.25 0.16 0.05 0.0172157 0.0151612 152 62 60 30 64 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 4.93 0.02 6964 1 0.01 -1 -1 30056 -1 -1 19 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65412 30 32 299 247 1 159 81 17 17 289 -1 unnamed_device 2.21 808 0.12 0.00 2.75195 -95.5642 -2.75195 2.75195 0.48 0.000285658 0.000250145 0.0463112 0.0400826 34 2174 24 6.87369e+06 265503 618332. 2139.56 0.86 0.109132 0.0935458 1828 24 1635 2684 198018 46724 3.16056 3.16056 -122.346 -3.16056 0 0 787024. 2723.27 0.16 0.05 0.0146637 0.0127833 110 29 60 30 30 30
+ fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 5.90 0.03 7280 1 0.01 -1 -1 30160 -1 -1 23 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65892 30 32 386 306 1 192 85 17 17 289 -1 unnamed_device 2.86 829 0.16 0.00 3.36289 -111.836 -3.36289 3.36289 0.48 0.000359955 0.000317902 0.0635667 0.0555532 34 2432 44 6.87369e+06 321398 618332. 2139.56 1.01 0.151914 0.131328 1828 21 1848 2813 174436 44350 4.1102 4.1102 -142.792 -4.1102 0 0 787024. 2723.27 0.20 0.06 0.0204343 0.0181304 140 58 60 30 60 30
+ fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 11.20 0.03 7248 1 0.01 -1 -1 30440 -1 -1 43 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66552 32 32 470 382 1 202 107 17 17 289 -1 unnamed_device 4.49 894 0.17 0.00 3.43679 -116.859 -3.43679 3.43679 0.48 0.000401841 0.000352399 0.0616844 0.0528226 36 2932 35 6.87369e+06 600875 648988. 2245.63 4.73 0.165384 0.140287 2125 24 2152 3599 280160 72162 4.0287 4.0287 -146.479 -4.0287 0 0 828058. 2865.25 0.17 0.06 0.0188772 0.0163516 158 106 0 0 128 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 4.54 0.02 7224 1 0.02 -1 -1 30288 -1 -1 33 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66464 31 32 427 343 1 196 96 17 17 289 -1 unnamed_device 1.81 985 0.19 0.00 3.66544 -117.515 -3.66544 3.66544 0.48 0.00038408 0.000338015 0.066551 0.0577131 32 2867 29 6.87369e+06 461137 586450. 2029.24 0.61 0.119731 0.103646 2205 25 1934 3251 250857 62492 4.046 4.046 -149.48 -4.046 0 0 744469. 2576.02 0.20 0.10 0.0343694 0.0302491 150 79 31 31 93 31
+ fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 4.81 0.02 7208 1 0.01 -1 -1 30296 -1 -1 32 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65460 30 32 407 331 1 188 94 17 17 289 -1 unnamed_device 1.99 1002 0.16 0.00 2.81125 -97.028 -2.81125 2.81125 0.48 0.000360282 0.000317513 0.0563315 0.0483206 34 2542 20 6.87369e+06 447163 618332. 2139.56 0.87 0.133532 0.114906 2103 20 1627 2620 183046 44107 2.97596 2.97596 -119.888 -2.97596 0 0 787024. 2723.27 0.16 0.05 0.0160005 0.0140075 141 83 26 26 90 30
+ fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 9.07 0.03 7128 1 0.02 -1 -1 30192 -1 -1 21 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65588 32 32 408 320 1 202 85 17 17 289 -1 unnamed_device 5.17 915 0.19 0.00 3.44779 -122.129 -3.44779 3.44779 0.54 0.000532491 0.000464218 0.0725443 0.0628534 34 3240 45 6.87369e+06 293451 618332. 2139.56 1.76 0.200315 0.172884 2214 23 2306 4019 330867 75863 4.1713 4.1713 -155.271 -4.1713 0 0 787024. 2723.27 0.15 0.06 0.0179825 0.0157965 147 58 64 32 64 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 5.03 0.02 7300 1 0.01 -1 -1 30136 -1 -1 36 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65368 29 32 391 320 1 181 97 17 17 289 -1 unnamed_device 1.90 752 0.16 0.00 2.84425 -88.0049 -2.84425 2.84425 0.48 0.000418559 0.000345776 0.0632218 0.053706 34 2456 48 6.87369e+06 503058 618332. 2139.56 1.21 0.15414 0.131967 1655 22 1592 2567 195827 49830 3.05546 3.05546 -109.448 -3.05546 0 0 787024. 2723.27 0.16 0.05 0.0159607 0.0139507 138 81 26 26 85 29
+ fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 3.79 0.03 6808 1 0.01 -1 -1 29916 -1 -1 16 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65612 32 32 284 226 1 168 80 17 17 289 -1 unnamed_device 0.79 789 0.12 0.00 2.78015 -100.92 -2.78015 2.78015 0.50 0.00029069 0.000253572 0.0467099 0.0405533 34 2345 22 6.87369e+06 223581 618332. 2139.56 0.98 0.114196 0.0983592 1932 22 1561 2395 186213 44314 3.12146 3.12146 -128.039 -3.12146 0 0 787024. 2723.27 0.16 0.04 0.0139485 0.0122339 114 -1 96 32 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 6.99 0.02 7204 1 0.01 -1 -1 30120 -1 -1 37 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65944 32 32 408 320 1 202 101 17 17 289 -1 unnamed_device 4.21 1117 0.18 0.00 3.40379 -123.137 -3.40379 3.40379 0.51 0.000366434 0.000323307 0.0623052 0.0537457 32 3057 39 6.87369e+06 517032 586450. 2029.24 0.72 0.122631 0.105986 2389 23 2121 3337 313028 68904 3.8784 3.8784 -153.101 -3.8784 0 0 744469. 2576.02 0.15 0.06 0.0179589 0.0155641 155 62 64 32 64 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 7.34 0.02 7224 1 0.01 -1 -1 30060 -1 -1 21 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65960 32 32 408 320 1 202 85 17 17 289 -1 unnamed_device 3.58 815 0.17 0.00 3.48699 -119.46 -3.48699 3.48699 0.49 0.000372972 0.000328722 0.0711309 0.061777 36 2559 26 6.87369e+06 293451 648988. 2245.63 1.80 0.165541 0.142593 1860 22 2043 3119 221439 54519 3.7954 3.7954 -138.959 -3.7954 0 0 828058. 2865.25 0.16 0.05 0.0175448 0.0154313 147 62 64 32 64 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 5.69 0.03 6844 1 0.01 -1 -1 30172 -1 -1 30 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65692 32 32 316 268 1 158 94 17 17 289 -1 unnamed_device 3.20 843 0.14 0.00 2.82225 -98.1315 -2.82225 2.82225 0.48 0.000285345 0.00024786 0.045176 0.0382844 28 2180 24 6.87369e+06 419215 531479. 1839.03 0.60 0.0834537 0.070979 1872 22 1399 2348 165686 39773 3.20916 3.20916 -118.426 -3.20916 0 0 648988. 2245.63 0.16 0.05 0.017366 0.0148966 112 47 32 32 54 27
+ fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 3.77 0.02 7032 1 0.01 -1 -1 30008 -1 -1 17 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65364 31 32 277 222 1 164 80 17 17 289 -1 unnamed_device 0.90 730 0.15 0.00 2.76295 -95.6398 -2.76295 2.76295 0.59 0.000274418 0.00024057 0.0540207 0.0464735 32 2352 36 6.87369e+06 237555 586450. 2029.24 0.73 0.105578 0.0907921 1752 23 1517 2415 183946 42844 3.25486 3.25486 -127.774 -3.25486 0 0 744469. 2576.02 0.15 0.04 0.0135223 0.0118207 112 -1 93 31 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 5.47 0.03 7116 1 0.01 -1 -1 30128 -1 -1 35 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65924 32 32 382 304 1 194 99 17 17 289 -1 unnamed_device 2.83 994 0.17 0.00 3.37999 -116.206 -3.37999 3.37999 0.49 0.00036 0.000314437 0.0594288 0.0510954 28 2569 24 6.87369e+06 489084 531479. 1839.03 0.65 0.106565 0.0917915 2237 22 1749 2543 214152 46704 3.9657 3.9657 -144.105 -3.9657 0 0 648988. 2245.63 0.14 0.05 0.0162215 0.0141538 144 56 60 32 58 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 4.84 0.03 7168 1 0.01 -1 -1 30236 -1 -1 33 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65832 32 32 407 331 1 190 97 17 17 289 -1 unnamed_device 1.84 1005 0.19 0.00 3.61044 -113.291 -3.61044 3.61044 0.48 0.000357857 0.000314063 0.0623829 0.0537035 34 2602 24 6.87369e+06 461137 618332. 2139.56 1.01 0.139381 0.119989 2124 24 1759 2851 228087 52970 3.8594 3.8594 -135.132 -3.8594 0 0 787024. 2723.27 0.16 0.06 0.0192028 0.0167899 144 81 28 28 88 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 3.68 0.03 7196 1 0.01 -1 -1 30120 -1 -1 41 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66192 32 32 400 286 1 232 105 17 17 289 -1 unnamed_device 0.73 1277 0.17 0.00 3.98354 -137.218 -3.98354 3.98354 0.53 0.000378044 0.000332155 0.0549254 0.0472801 28 3271 26 6.87369e+06 572927 531479. 1839.03 0.94 0.112566 0.0972189 2779 21 2305 3740 278886 65802 4.97545 4.97545 -181.787 -4.97545 0 0 648988. 2245.63 0.13 0.06 0.0174446 0.0153899 183 -1 156 32 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 5.49 0.03 7092 1 0.02 -1 -1 30260 -1 -1 32 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65380 30 32 374 298 1 188 94 17 17 289 -1 unnamed_device 2.28 941 0.14 0.00 2.82225 -95.3465 -2.82225 2.82225 0.60 0.000350453 0.000297731 0.0470851 0.0401274 26 2764 46 6.87369e+06 447163 503264. 1741.40 1.15 0.11249 0.0959753 2394 25 1949 3198 349834 74709 3.51946 3.51946 -132.52 -3.51946 0 0 618332. 2139.56 0.13 0.07 0.0178328 0.015601 141 47 60 30 56 30
+ fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 3.23 0.02 6872 1 0.01 -1 -1 30124 -1 -1 20 27 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65424 27 32 275 232 1 145 79 17 17 289 -1 unnamed_device 0.84 679 0.11 0.00 2.75015 -85.6246 -2.75015 2.75015 0.49 0.000274438 0.000240421 0.0418373 0.0361196 30 1604 20 6.87369e+06 279477 556674. 1926.21 0.50 0.0771464 0.0659592 1414 21 991 1503 89331 21884 2.80496 2.80496 -101.696 -2.80496 0 0 706193. 2443.58 0.14 0.03 0.012001 0.0104922 102 26 54 27 27 27
+ fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 5.99 0.02 7344 1 0.01 -1 -1 30544 -1 -1 41 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 67092 32 32 494 379 1 233 105 17 17 289 -1 unnamed_device 2.55 1182 0.22 0.00 3.39279 -117.001 -3.39279 3.39279 0.48 0.000420917 0.000370549 0.0729044 0.062715 30 3956 29 6.87369e+06 572927 556674. 1926.21 1.43 0.137629 0.11823 2596 21 1939 3388 231098 52509 3.7341 3.7341 -141.747 -3.7341 0 0 706193. 2443.58 0.14 0.05 0.0194676 0.0171892 184 85 62 31 95 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 5.83 0.02 7324 1 0.01 -1 -1 30512 -1 -1 23 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66088 31 32 457 373 1 198 86 17 17 289 -1 unnamed_device 2.87 960 0.17 0.00 3.97274 -124.655 -3.97274 3.97274 0.49 0.000398731 0.000353999 0.0668329 0.0585569 34 2757 24 6.87369e+06 321398 618332. 2139.56 0.95 0.152058 0.131498 2190 18 1547 2441 175638 42871 4.50345 4.50345 -155.142 -4.50345 0 0 787024. 2723.27 0.16 0.04 0.0157217 0.0138333 144 105 0 0 124 31
+ fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 5.53 0.03 7192 1 0.02 -1 -1 30044 -1 -1 16 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65392 32 32 356 305 1 161 80 17 17 289 -1 unnamed_device 2.81 861 0.12 0.00 2.9868 -99.5286 -2.9868 2.9868 0.49 0.000326306 0.000286434 0.0506225 0.0441367 34 2181 21 6.87369e+06 223581 618332. 2139.56 0.85 0.119062 0.103055 1949 24 1263 2026 172860 38511 3.03546 3.03546 -122.292 -3.03546 0 0 787024. 2723.27 0.16 0.04 0.0157586 0.013708 107 86 0 0 89 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 5.70 0.02 7112 1 0.01 -1 -1 30108 -1 -1 34 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65824 32 32 365 283 1 196 98 17 17 289 -1 unnamed_device 0.99 865 0.17 0.00 3.38179 -111.253 -3.38179 3.38179 0.48 0.000338223 0.00029583 0.0559494 0.0478262 34 2983 34 6.87369e+06 475111 618332. 2139.56 2.74 0.144673 0.123345 2047 23 1770 2635 240680 56196 3.7671 3.7671 -138.741 -3.7671 0 0 787024. 2723.27 0.16 0.05 0.0163778 0.014374 147 31 90 30 32 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 4.62 0.02 7252 1 0.01 -1 -1 30372 -1 -1 40 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66316 31 32 445 338 1 224 103 17 17 289 -1 unnamed_device 2.00 1175 0.18 0.00 3.42399 -119.882 -3.42399 3.42399 0.48 0.00039732 0.000351697 0.0603849 0.051971 32 3157 28 6.87369e+06 558954 586450. 2029.24 0.61 0.116367 0.100418 2465 23 1974 2865 213484 49959 3.8063 3.8063 -148.001 -3.8063 0 0 744469. 2576.02 0.15 0.05 0.0188957 0.0165764 176 50 87 31 62 31
+ fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 5.01 0.03 7084 1 0.01 -1 -1 30196 -1 -1 36 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66000 30 32 376 300 1 188 98 17 17 289 -1 unnamed_device 1.78 832 0.15 0.00 2.83325 -90.4081 -2.83325 2.83325 0.56 0.00033774 0.000296995 0.0569609 0.0490897 30 2758 34 6.87369e+06 503058 556674. 1926.21 1.18 0.113071 0.0968252 1930 27 1569 2670 209389 62254 3.00426 3.00426 -110.718 -3.00426 0 0 706193. 2443.58 0.15 0.10 0.0319444 0.0281108 144 50 58 30 58 30
+ fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 5.66 0.03 7088 1 0.01 -1 -1 30136 -1 -1 46 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66136 32 32 408 320 1 202 110 17 17 289 -1 unnamed_device 2.26 1172 0.19 0.00 3.32249 -118.982 -3.32249 3.32249 0.48 0.000362859 0.0003201 0.057144 0.0487755 26 3274 50 6.87369e+06 642796 503264. 1741.40 1.36 0.126131 0.108056 2916 24 2272 3810 408931 103948 4.2996 4.2996 -163.158 -4.2996 0 0 618332. 2139.56 0.15 0.09 0.0241732 0.0207004 160 61 64 32 64 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 4.90 0.03 7128 1 0.01 -1 -1 30176 -1 -1 42 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65876 32 32 406 319 1 201 106 17 17 289 -1 unnamed_device 2.42 1100 0.17 0.00 2.77395 -103.059 -2.77395 2.77395 0.50 0.000373111 0.0003274 0.0571206 0.0490852 28 2563 24 6.87369e+06 586901 531479. 1839.03 0.52 0.105636 0.0912301 2366 20 1631 2662 181354 43218 3.20756 3.20756 -131.262 -3.20756 0 0 648988. 2245.63 0.14 0.05 0.0165357 0.01446 157 61 63 32 64 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 4.14 0.02 6872 1 0.01 -1 -1 30128 -1 -1 20 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65764 29 32 291 242 1 155 81 17 17 289 -1 unnamed_device 1.46 740 0.15 0.00 2.78015 -91.6249 -2.78015 2.78015 0.59 0.000323094 0.00028628 0.0588174 0.0506026 30 1554 18 6.87369e+06 279477 556674. 1926.21 0.58 0.102957 0.0887712 1263 20 986 1433 74327 18759 2.77666 2.77666 -106.111 -2.77666 0 0 706193. 2443.58 0.15 0.03 0.0122517 0.0107859 107 28 58 29 29 29
+ fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 4.77 0.03 7192 1 0.01 -1 -1 29976 -1 -1 15 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65388 32 32 335 291 1 154 79 17 17 289 -1 unnamed_device 2.02 805 0.11 0.00 2.9868 -94.6474 -2.9868 2.9868 0.48 0.000296802 0.000258137 0.0429826 0.0370556 36 1659 20 6.87369e+06 209608 648988. 2245.63 0.85 0.105139 0.0901344 1507 21 1082 1630 112589 26188 2.80396 2.80396 -106.293 -2.80396 0 0 828058. 2865.25 0.16 0.04 0.0135622 0.0117763 101 79 0 0 82 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 4.31 0.03 7104 1 0.01 -1 -1 30064 -1 -1 39 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65616 31 32 367 283 1 197 102 17 17 289 -1 unnamed_device 1.45 899 0.18 0.00 3.39279 -112.773 -3.39279 3.39279 0.49 0.000333656 0.000292811 0.0563887 0.0482658 32 3290 50 6.87369e+06 544980 586450. 2029.24 0.86 0.121946 0.104647 2025 21 1865 3107 245054 61301 4.013 4.013 -142.69 -4.013 0 0 744469. 2576.02 0.15 0.06 0.0160592 0.0140465 152 29 93 31 31 31
+ fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 5.33 0.02 6988 1 0.02 -1 -1 30232 -1 -1 32 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65592 29 32 301 258 1 148 93 17 17 289 -1 unnamed_device 2.74 750 0.15 0.00 2.70795 -87.0581 -2.70795 2.70795 0.48 0.000273218 0.000238127 0.0491855 0.0417491 26 1914 33 6.87369e+06 447163 503264. 1741.40 0.67 0.0908884 0.0772687 1750 22 1280 2078 177066 41735 3.11656 3.11656 -111.842 -3.11656 0 0 618332. 2139.56 0.15 0.05 0.0131215 0.0113129 108 48 29 29 52 26
+ fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 5.44 0.03 6908 1 0.01 -1 -1 30020 -1 -1 16 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65240 32 32 315 257 1 168 80 17 17 289 -1 unnamed_device 2.65 864 0.11 0.00 2.77395 -104.748 -2.77395 2.77395 0.50 0.000297341 0.00026025 0.0421848 0.0364631 34 2440 25 6.87369e+06 223581 618332. 2139.56 0.89 0.107476 0.0924633 1995 24 1659 2716 232604 52025 3.24056 3.24056 -135.002 -3.24056 0 0 787024. 2723.27 0.16 0.05 0.0152007 0.0132204 114 31 64 32 32 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 4.79 0.03 7124 1 0.01 -1 -1 30056 -1 -1 34 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66172 31 32 389 309 1 193 97 17 17 289 -1 unnamed_device 2.35 954 0.15 0.00 2.86445 -101.042 -2.86445 2.86445 0.48 0.000369682 0.000314585 0.0522909 0.044745 30 2216 25 6.87369e+06 475111 556674. 1926.21 0.55 0.0995443 0.0857185 1809 20 1388 2039 125233 28708 2.92396 2.92396 -119.684 -2.92396 0 0 706193. 2443.58 0.14 0.04 0.0153927 0.0136092 146 60 58 31 62 31
+ fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 5.78 0.02 7104 1 0.02 -1 -1 30012 -1 -1 16 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65376 31 32 310 264 1 154 79 17 17 289 -1 unnamed_device 3.04 688 0.13 0.00 2.42892 -84.3228 -2.42892 2.42892 0.59 0.000293585 0.000255406 0.0545198 0.0469578 30 1987 23 6.87369e+06 223581 556674. 1926.21 0.64 0.100628 0.0864031 1500 22 931 1604 89582 22513 2.73796 2.73796 -105.472 -2.73796 0 0 706193. 2443.58 0.14 0.03 0.0136683 0.0119273 103 49 31 31 53 31
+ fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 4.81 0.02 7120 1 0.01 -1 -1 30152 -1 -1 36 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65904 32 32 384 308 1 190 100 17 17 289 -1 unnamed_device 2.41 1103 0.16 0.00 2.70795 -100.5 -2.70795 2.70795 0.48 0.000346643 0.000304363 0.0532847 0.0455513 30 2457 22 6.87369e+06 503058 556674. 1926.21 0.53 0.0973976 0.0836269 2046 22 1151 1962 119538 27562 2.76766 2.76766 -116.399 -2.76766 0 0 706193. 2443.58 0.15 0.04 0.0162233 0.0142366 143 56 52 26 64 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 4.30 0.02 7260 1 0.02 -1 -1 30184 -1 -1 39 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66472 31 32 424 341 1 196 102 17 17 289 -1 unnamed_device 1.78 1022 0.20 0.00 2.87725 -102.694 -2.87725 2.87725 0.49 0.000416198 0.000370947 0.0706403 0.060414 28 2500 22 6.87369e+06 544980 531479. 1839.03 0.54 0.119053 0.102384 2177 20 1812 2641 186363 43838 3.16356 3.16356 -126.781 -3.16356 0 0 648988. 2245.63 0.13 0.05 0.0167259 0.0145 151 88 31 31 92 31
+ fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 5.42 0.03 6840 1 0.02 -1 -1 30060 -1 -1 17 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65284 32 32 334 280 1 164 81 17 17 289 -1 unnamed_device 2.28 672 0.12 0.00 2.47912 -86.3192 -2.47912 2.47912 0.48 0.000306873 0.000268297 0.0483759 0.0418043 34 2562 31 6.87369e+06 237555 618332. 2139.56 1.19 0.119521 0.102414 1605 22 1343 2106 166937 40871 2.85996 2.85996 -108.193 -2.85996 0 0 787024. 2723.27 0.16 0.04 0.0142441 0.0124266 110 54 32 32 60 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 6.01 0.02 6844 1 0.01 -1 -1 30160 -1 -1 16 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65296 32 32 340 284 1 166 80 17 17 289 -1 unnamed_device 2.84 714 0.12 0.00 2.75195 -96.38 -2.75195 2.75195 0.48 0.000306373 0.000267843 0.0518509 0.0448499 40 1794 33 6.87369e+06 223581 706193. 2443.58 1.31 0.126122 0.108181 1696 20 1414 2262 178141 45740 2.96796 2.96796 -119.801 -2.96796 0 0 926341. 3205.33 0.18 0.04 0.0132768 0.0115932 112 60 32 32 62 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 6.80 0.03 7224 1 0.02 -1 -1 30508 -1 -1 40 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65920 32 32 408 320 1 202 104 17 17 289 -1 unnamed_device 3.52 1040 0.22 0.00 3.44599 -123.132 -3.44599 3.44599 0.57 0.00050517 0.000438898 0.0711873 0.0604614 32 3222 48 6.87369e+06 558954 586450. 2029.24 1.03 0.144984 0.124793 2320 20 1908 2963 230032 53398 3.89241 3.89241 -150.829 -3.89241 0 0 744469. 2576.02 0.16 0.06 0.0194221 0.0169869 157 49 64 32 64 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 4.49 0.02 7088 1 0.01 -1 -1 30356 -1 -1 34 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65996 29 32 371 297 1 183 95 17 17 289 -1 unnamed_device 2.07 922 0.17 0.00 2.74095 -91.9182 -2.74095 2.74095 0.48 0.000342481 0.000295057 0.0602617 0.0514198 30 2096 21 6.87369e+06 475111 556674. 1926.21 0.52 0.103325 0.0887425 1710 16 1019 1632 82264 20718 2.82066 2.82066 -109.215 -2.82066 0 0 706193. 2443.58 0.15 0.03 0.012777 0.011366 141 54 56 29 58 29
+ fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 7.64 0.02 7088 1 0.01 -1 -1 30336 -1 -1 40 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66400 32 32 470 382 1 202 104 17 17 289 -1 unnamed_device 4.58 938 0.16 0.00 3.44599 -117.227 -3.44599 3.44599 0.49 0.000388327 0.00034102 0.0543426 0.0464234 34 2695 30 6.87369e+06 558954 618332. 2139.56 1.08 0.14495 0.124515 2132 22 2002 3251 205807 51654 3.9456 3.9456 -150.14 -3.9456 0 0 787024. 2723.27 0.16 0.05 0.0185402 0.0162191 157 117 0 0 128 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 3.15 0.02 7008 1 0.01 -1 -1 30028 -1 -1 16 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65224 31 32 261 214 1 155 79 17 17 289 -1 unnamed_device 0.59 737 0.15 0.00 2.44612 -85.5706 -2.44612 2.44612 0.50 0.000263489 0.000229183 0.0602857 0.052075 32 2194 37 6.87369e+06 223581 586450. 2029.24 0.64 0.101976 0.087806 1675 20 1178 1802 164404 37890 3.24386 3.24386 -113.079 -3.24386 0 0 744469. 2576.02 0.15 0.04 0.0118254 0.010325 104 -1 85 31 0 0
+ fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 4.90 0.03 7156 1 0.01 -1 -1 30024 -1 -1 36 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66284 32 32 419 339 1 194 100 17 17 289 -1 unnamed_device 1.94 971 0.19 0.00 3.65444 -116.665 -3.65444 3.65444 0.49 0.000368741 0.000324483 0.0678147 0.0584196 34 2456 23 6.87369e+06 503058 618332. 2139.56 0.97 0.150875 0.130192 2064 21 1703 2439 192861 43749 3.87046 3.87046 -139.483 -3.87046 0 0 787024. 2723.27 0.16 0.05 0.017031 0.0149489 149 89 28 28 92 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 6.85 0.02 6884 1 0.02 -1 -1 29968 -1 -1 16 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65444 32 32 377 319 1 168 80 17 17 289 -1 unnamed_device 4.03 796 0.12 0.00 2.84435 -103.447 -2.84435 2.84435 0.49 0.000341729 0.000300211 0.0541667 0.0472002 36 1925 22 6.87369e+06 223581 648988. 2245.63 0.92 0.12582 0.108934 1595 19 1466 2144 153971 36109 3.26576 3.26576 -126.596 -3.26576 0 0 828058. 2865.25 0.16 0.04 0.0141092 0.0123902 114 93 0 0 96 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 5.19 0.02 7352 1 0.02 -1 -1 30136 -1 -1 39 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66316 32 32 402 317 1 199 103 17 17 289 -1 unnamed_device 2.44 890 0.17 0.00 2.84425 -99.0846 -2.84425 2.84425 0.49 0.000356873 0.00031385 0.0594108 0.0512349 30 2728 35 6.87369e+06 544980 556674. 1926.21 0.82 0.115894 0.0996929 1875 22 1492 2274 136873 34626 2.94296 2.94296 -118.936 -2.94296 0 0 706193. 2443.58 0.15 0.04 0.0165286 0.0145099 153 59 61 32 64 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 7.37 0.03 7240 1 0.02 -1 -1 30428 -1 -1 47 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 67124 32 32 501 383 1 236 111 17 17 289 -1 unnamed_device 4.12 1261 0.20 0.00 4.02754 -141.189 -4.02754 4.02754 0.49 0.000426081 0.000376443 0.0644689 0.0554 28 3437 27 6.87369e+06 656770 531479. 1839.03 1.12 0.127641 0.109902 3041 23 2628 4178 364269 81055 4.91515 4.91515 -183.048 -4.91515 0 0 648988. 2245.63 0.17 0.07 0.0208934 0.01829 190 81 64 32 96 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 3.98 0.02 6744 1 0.01 -1 -1 30044 -1 -1 14 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65356 30 32 249 232 1 118 76 17 17 289 -1 unnamed_device 1.76 701 0.08 0.00 2.28291 -78.7967 -2.28291 2.28291 0.48 0.00024318 0.000210061 0.0351027 0.0300778 32 1649 27 6.87369e+06 195634 586450. 2029.24 0.48 0.0672402 0.0574204 1409 19 730 1037 91018 21001 2.11902 2.11902 -93.0475 -2.11902 0 0 744469. 2576.02 0.15 0.03 0.0102079 0.00877849 72 51 0 0 53 30
+ fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 3.49 0.03 6992 1 0.02 -1 -1 30080 -1 -1 18 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65164 30 32 299 247 1 158 80 17 17 289 -1 unnamed_device 0.80 672 0.12 0.00 2.78935 -94.2596 -2.78935 2.78935 0.48 0.000287794 0.000253038 0.0472577 0.0410838 34 1761 22 6.87369e+06 251529 618332. 2139.56 0.78 0.108187 0.0932533 1517 21 1400 2060 150186 35940 3.21856 3.21856 -116.073 -3.21856 0 0 787024. 2723.27 0.16 0.04 0.0134206 0.0117979 109 29 60 30 30 30
+ fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 4.45 0.06 6860 1 0.01 -1 -1 29972 -1 -1 16 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65756 32 32 315 257 1 168 80 17 17 289 -1 unnamed_device 1.26 756 0.15 0.00 2.77395 -101.49 -2.77395 2.77395 0.52 0.000306733 0.000268538 0.0553373 0.048072 34 2539 29 6.87369e+06 223581 618332. 2139.56 1.11 0.141093 0.121525 1931 24 1699 2976 230462 55973 3.28316 3.28316 -130.026 -3.28316 0 0 787024. 2723.27 0.16 0.05 0.0152297 0.0132961 114 31 64 32 32 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 3.06 0.02 6932 1 0.01 -1 -1 30260 -1 -1 37 25 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65040 25 32 259 222 1 139 94 17 17 289 -1 unnamed_device 0.63 709 0.14 0.00 2.69695 -77.7363 -2.69695 2.69695 0.51 0.000247699 0.000214822 0.0458503 0.038875 32 1774 23 6.87369e+06 517032 586450. 2029.24 0.49 0.0780068 0.0663388 1490 21 1024 1568 133399 29564 2.90196 2.90196 -95.7407 -2.90196 0 0 744469. 2576.02 0.19 0.03 0.0110667 0.00950061 106 19 50 25 25 25
+ fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 6.10 0.02 7188 1 0.01 -1 -1 30340 -1 -1 21 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66184 32 32 433 347 1 200 85 17 17 289 -1 unnamed_device 2.80 840 0.14 0.00 3.39279 -115.959 -3.39279 3.39279 0.52 0.000382083 0.000337378 0.0639324 0.0558431 40 2414 25 6.87369e+06 293451 706193. 2443.58 1.28 0.149075 0.129221 2295 19 1958 3473 280540 70880 4.1416 4.1416 -145.501 -4.1416 0 0 926341. 3205.33 0.18 0.06 0.01667 0.0146672 145 84 32 32 94 32
+ fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 4.98 0.02 7100 1 0.02 -1 -1 30132 -1 -1 38 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66512 31 32 423 341 1 195 101 17 17 289 -1 unnamed_device 2.14 935 0.19 0.00 2.88825 -101.212 -2.88825 2.88825 0.49 0.000381653 0.000335592 0.0633177 0.054698 34 2436 23 6.87369e+06 531006 618332. 2139.56 0.88 0.142187 0.122686 1959 22 1834 2888 202758 47877 3.17456 3.17456 -120.674 -3.17456 0 0 787024. 2723.27 0.16 0.05 0.0176361 0.0153935 150 88 29 29 93 31
+ fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 5.63 0.02 7140 1 0.00 -1 -1 30464 -1 -1 29 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66124 32 32 439 351 1 295 93 17 17 289 -1 unnamed_device 1.68 1303 0.24 0.00 4.09224 -140.916 -4.09224 4.09224 0.58 0.000551086 0.000480841 0.0823999 0.0713847 34 3724 38 6.89349e+06 408721 618332. 2139.56 1.75 0.214284 0.184759 2708 23 2580 3059 225429 51629 4.65275 4.65275 -165.273 -4.65275 0 0 787024. 2723.27 0.16 0.05 0.0187036 0.0163962 192 80 32 32 96 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 4.46 0.03 7160 1 0.02 -1 -1 30284 -1 -1 29 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65756 30 32 412 333 1 262 91 17 17 289 -1 unnamed_device 1.39 1122 0.19 0.00 4.23387 -129.416 -4.23387 4.23387 0.50 0.000413399 0.000369498 0.0691133 0.0597002 34 3156 26 6.89349e+06 408721 618332. 2139.56 1.07 0.152884 0.131062 2391 20 1978 2780 177316 44342 5.04518 5.04518 -160.947 -5.04518 0 0 787024. 2723.27 0.16 0.05 0.0161608 0.0142939 177 78 30 30 89 30
+ fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 4.83 0.04 7128 1 0.02 -1 -1 30304 -1 -1 25 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65616 32 32 388 310 1 253 89 17 17 289 -1 unnamed_device 1.70 1145 0.20 0.00 3.21136 -113.482 -3.21136 3.21136 0.49 0.000332095 0.000290824 0.0749481 0.064692 34 3123 27 6.89349e+06 352346 618332. 2139.56 1.03 0.150995 0.129664 2372 20 1771 2163 155152 35322 3.6813 3.6813 -137.749 -3.6813 0 0 787024. 2723.27 0.21 0.04 0.0149064 0.0130881 167 50 54 32 64 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 4.17 0.03 7060 1 0.01 -1 -1 30264 -1 -1 25 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65336 29 32 347 271 1 209 86 17 17 289 -1 unnamed_device 1.29 1077 0.14 0.00 3.65595 -118.117 -3.65595 3.65595 0.50 0.000323254 0.000284642 0.0482922 0.0418358 34 2760 30 6.89349e+06 352346 618332. 2139.56 0.94 0.124797 0.107169 2240 21 1703 2629 176571 41572 4.15226 4.15226 -144.254 -4.15226 0 0 787024. 2723.27 0.16 0.04 0.0147699 0.0129979 148 25 87 29 29 29
+ fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 5.44 0.02 7196 1 0.02 -1 -1 30092 -1 -1 24 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65428 32 32 377 289 1 233 88 17 17 289 -1 unnamed_device 1.80 1246 0.18 0.00 4.13624 -141.151 -4.13624 4.13624 0.49 0.000447223 0.000396693 0.0627276 0.0548585 36 3411 25 6.89349e+06 338252 648988. 2245.63 1.64 0.146703 0.127067 2892 21 2583 4406 334947 71908 4.44425 4.44425 -169.166 -4.44425 0 0 828058. 2865.25 0.17 0.06 0.0159571 0.0140364 163 31 96 32 32 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 4.53 0.03 7144 1 0.02 -1 -1 30176 -1 -1 41 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65484 32 32 403 317 1 257 105 17 17 289 -1 unnamed_device 1.54 1371 0.19 0.00 3.58259 -119.395 -3.58259 3.58259 0.48 0.000370715 0.000325615 0.0588318 0.0506239 34 3534 37 6.89349e+06 577847 618332. 2139.56 0.99 0.145304 0.125099 2806 18 1866 2885 205039 45977 3.64205 3.64205 -142.568 -3.64205 0 0 787024. 2723.27 0.16 0.05 0.0148479 0.0130591 179 61 63 32 63 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 3.43 0.02 7008 1 0.01 -1 -1 30148 -1 -1 21 27 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65064 27 32 275 232 1 165 80 17 17 289 -1 unnamed_device 1.01 811 0.13 0.00 3.0242 -93.1937 -3.0242 3.0242 0.52 0.000266488 0.00023349 0.047875 0.0413492 30 1963 21 6.89349e+06 295971 556674. 1926.21 0.50 0.0816724 0.0705679 1527 21 1149 1716 99805 23493 3.11961 3.11961 -111.122 -3.11961 0 0 706193. 2443.58 0.17 0.04 0.0151236 0.0131376 110 26 54 27 27 27
+ fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 4.02 0.03 7080 1 0.02 -1 -1 29968 -1 -1 35 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65572 31 32 319 244 1 187 98 17 17 289 -1 unnamed_device 0.66 846 0.23 0.00 2.6531 -87.0069 -2.6531 2.6531 0.49 0.000475669 0.000414749 0.0754104 0.0641763 28 2715 50 6.89349e+06 493284 531479. 1839.03 1.33 0.133655 0.113742 2217 25 1453 2425 211645 50200 3.39131 3.39131 -112.092 -3.39131 0 0 648988. 2245.63 0.16 0.06 0.0207382 0.018083 141 -1 115 31 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 4.36 0.02 7112 1 0.01 -1 -1 30012 -1 -1 21 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65024 31 32 340 294 1 226 84 17 17 289 -1 unnamed_device 1.43 1101 0.14 0.00 2.81345 -98.8897 -2.81345 2.81345 0.48 0.000306968 0.000268881 0.0506255 0.0437461 34 2699 36 6.89349e+06 295971 618332. 2139.56 1.03 0.141311 0.121108 2259 24 1859 2271 162969 37913 3.03746 3.03746 -119.901 -3.03746 0 0 787024. 2723.27 0.16 0.04 0.0154132 0.0134304 141 81 0 0 84 31
+ fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 4.59 0.03 6952 1 0.01 -1 -1 30080 -1 -1 19 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65232 32 32 315 257 1 193 83 17 17 289 -1 unnamed_device 1.46 791 0.12 0.00 3.02295 -106.257 -3.02295 3.02295 0.48 0.000299234 0.000261476 0.0481972 0.0418175 36 2235 32 6.89349e+06 267783 648988. 2245.63 1.12 0.119313 0.10263 1716 21 1606 2099 151096 35236 3.16081 3.16081 -122.944 -3.16081 0 0 828058. 2865.25 0.20 0.05 0.0172012 0.0149906 127 31 64 32 32 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 4.52 0.02 7060 1 0.01 -1 -1 30160 -1 -1 21 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65384 30 32 328 276 1 203 83 17 17 289 -1 unnamed_device 1.70 844 0.13 0.00 3.44524 -110.698 -3.44524 3.44524 0.48 0.000301767 0.000264702 0.0505245 0.0438667 34 2396 49 6.89349e+06 295971 618332. 2139.56 0.94 0.127346 0.109324 1719 23 1671 2244 155074 35609 3.59725 3.59725 -130.957 -3.59725 0 0 787024. 2723.27 0.16 0.04 0.0149476 0.0130838 135 58 30 30 60 30
+ fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 3.88 0.03 6888 1 0.01 -1 -1 30260 -1 -1 20 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65340 32 32 332 281 1 215 84 17 17 289 -1 unnamed_device 1.18 1017 0.13 0.00 3.0824 -101.866 -3.0824 3.0824 0.49 0.000299957 0.000262459 0.0445017 0.0383293 34 2583 28 6.89349e+06 281877 618332. 2139.56 0.81 0.110685 0.094413 2048 21 1304 1496 110049 26446 3.27511 3.27511 -123.572 -3.27511 0 0 787024. 2723.27 0.16 0.03 0.0133389 0.0116227 135 57 25 25 64 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 4.33 0.02 7084 1 0.02 -1 -1 30116 -1 -1 25 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65668 32 32 387 306 1 240 89 17 17 289 -1 unnamed_device 1.14 1045 0.17 0.00 3.42319 -117.297 -3.42319 3.42319 0.48 0.000346776 0.000302759 0.0624616 0.0539938 36 2708 30 6.89349e+06 352346 648988. 2245.63 1.25 0.145047 0.124789 2198 20 1695 2359 174815 38987 3.4435 3.4435 -131.399 -3.4435 0 0 828058. 2865.25 0.16 0.05 0.0152251 0.0133212 161 55 64 32 57 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 4.70 0.03 7072 1 0.02 -1 -1 30252 -1 -1 28 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65428 32 32 408 320 1 264 92 17 17 289 -1 unnamed_device 1.53 1273 0.18 0.00 4.15824 -142.615 -4.15824 4.15824 0.49 0.000371149 0.000327674 0.0632552 0.0551671 34 3608 43 6.89349e+06 394628 618332. 2139.56 1.18 0.155384 0.13411 2741 21 2601 3454 256448 59199 4.79535 4.79535 -172.381 -4.79535 0 0 787024. 2723.27 0.16 0.06 0.0169602 0.0149117 177 60 64 32 64 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 4.04 0.02 6876 1 0.02 -1 -1 30136 -1 -1 21 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64748 29 32 276 232 1 171 82 17 17 289 -1 unnamed_device 1.29 786 0.13 0.00 2.84265 -91.0587 -2.84265 2.84265 0.51 0.000291609 0.000245812 0.0489383 0.0424028 34 2092 26 6.89349e+06 295971 618332. 2139.56 0.81 0.108186 0.0930791 1749 21 1147 1578 118666 27410 2.76766 2.76766 -104.976 -2.76766 0 0 787024. 2723.27 0.17 0.04 0.0122959 0.0107544 112 21 58 29 24 24
+ fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 4.98 0.02 7216 1 0.01 -1 -1 30028 -1 -1 25 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64992 32 32 402 316 1 256 89 17 17 289 -1 unnamed_device 1.73 1334 0.19 0.00 3.46029 -125.917 -3.46029 3.46029 0.51 0.000371688 0.000329149 0.0631811 0.0552336 34 3656 26 6.89349e+06 352346 618332. 2139.56 1.24 0.148852 0.128484 2997 21 2592 4002 331101 72407 3.75345 3.75345 -150.187 -3.75345 0 0 787024. 2723.27 0.16 0.06 0.0170327 0.0149674 174 60 64 32 62 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 3.73 0.03 7216 1 0.01 -1 -1 30064 -1 -1 25 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65464 32 32 384 304 1 236 89 17 17 289 -1 unnamed_device 0.91 1227 0.17 0.00 2.97165 -108.503 -2.97165 2.97165 0.48 0.000344306 0.000302001 0.0601671 0.0519262 34 2791 22 6.89349e+06 352346 618332. 2139.56 0.90 0.133443 0.11478 2365 22 1771 2231 173763 38560 3.19151 3.19151 -134.31 -3.19151 0 0 787024. 2723.27 0.16 0.05 0.0164207 0.0144253 160 54 64 32 56 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 4.46 0.03 6900 1 0.01 -1 -1 29932 -1 -1 21 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65552 32 32 340 285 1 224 85 17 17 289 -1 unnamed_device 1.55 1150 0.14 0.00 2.91975 -105.102 -2.91975 2.91975 0.48 0.000311626 0.000273016 0.0492091 0.0425493 34 2652 27 6.89349e+06 295971 618332. 2139.56 0.98 0.118797 0.101835 2202 17 1434 1885 117049 28208 2.91226 2.91226 -120.614 -2.91226 0 0 787024. 2723.27 0.16 0.03 0.0121088 0.0106771 139 62 29 29 64 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 3.50 0.02 6832 1 0.01 -1 -1 29964 -1 -1 15 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64556 30 32 229 211 1 143 77 17 17 289 -1 unnamed_device 0.84 589 0.08 0.00 2.58376 -82.1953 -2.58376 2.58376 0.48 0.000228219 0.000196471 0.0347059 0.0297245 34 1776 25 6.89349e+06 211408 618332. 2139.56 0.76 0.0833411 0.0708777 1323 18 782 920 69551 17091 2.27537 2.27537 -90.1597 -2.27537 0 0 787024. 2723.27 0.21 0.04 0.0141436 0.0124007 85 29 24 24 30 30
+ fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 4.13 0.03 7016 1 0.01 -1 -1 30240 -1 -1 22 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65800 31 32 337 282 1 217 85 17 17 289 -1 unnamed_device 1.21 894 0.14 0.00 3.42619 -112.826 -3.42619 3.42619 0.48 0.000311905 0.000273027 0.0501529 0.0434596 34 3053 28 6.89349e+06 310065 618332. 2139.56 1.05 0.125433 0.107271 2039 20 1701 2178 150809 37008 3.82235 3.82235 -145.231 -3.82235 0 0 787024. 2723.27 0.16 0.04 0.013523 0.0118403 142 55 31 31 62 31
+ fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 4.25 0.03 7112 1 0.01 -1 -1 30044 -1 -1 40 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65744 32 32 367 284 1 228 104 17 17 289 -1 unnamed_device 0.93 1179 0.23 0.00 3.57683 -124.5 -3.57683 3.57683 0.52 0.000350677 0.00030759 0.0714323 0.0609971 34 2743 20 6.89349e+06 563754 618332. 2139.56 1.15 0.169066 0.145761 2247 20 1763 2541 187236 42099 3.89814 3.89814 -149.016 -3.89814 0 0 787024. 2723.27 0.16 0.05 0.0152128 0.0133285 166 31 91 32 32 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 4.52 0.03 7216 1 0.02 -1 -1 30480 -1 -1 31 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66388 32 32 461 376 1 309 95 17 17 289 -1 unnamed_device 1.11 1450 0.19 0.00 3.41839 -116.529 -3.41839 3.41839 0.48 0.000480009 0.0004248 0.067511 0.058314 36 3591 43 6.89349e+06 436909 648988. 2245.63 1.38 0.166827 0.142903 2840 21 2216 2534 197820 43858 4.09476 4.09476 -143.974 -4.09476 0 0 828058. 2865.25 0.16 0.05 0.0180363 0.0158381 201 108 0 0 125 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 3.39 0.03 6828 1 0.01 -1 -1 30204 -1 -1 18 26 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65416 26 32 205 193 1 129 76 17 17 289 -1 unnamed_device 1.15 670 0.08 0.00 2.22087 -67.2081 -2.22087 2.22087 0.48 0.00020455 0.000174617 0.0314984 0.0265912 32 1564 19 6.89349e+06 253689 586450. 2029.24 0.47 0.0573486 0.0484614 1318 18 679 854 70530 16048 2.08612 2.08612 -80.3815 -2.08612 0 0 744469. 2576.02 0.15 0.02 0.0081882 0.00706689 77 21 26 26 22 22
+ fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 3.55 0.03 7292 1 0.02 -1 -1 30008 -1 -1 21 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65040 32 32 334 252 1 196 85 17 17 289 -1 unnamed_device 1.00 1035 0.15 0.00 3.25074 -113.983 -3.25074 3.25074 0.48 0.000323386 0.00028435 0.0536843 0.0466992 30 2813 24 6.89349e+06 295971 556674. 1926.21 0.67 0.0977572 0.0847135 2223 20 1515 2589 182638 40638 3.81645 3.81645 -149.465 -3.81645 0 0 706193. 2443.58 0.14 0.04 0.0142182 0.012496 141 -1 122 32 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 2.58 0.02 6752 1 0.01 -1 -1 29884 -1 -1 12 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65028 32 32 200 183 1 122 76 17 17 289 -1 unnamed_device 0.28 496 0.08 0.00 1.74602 -65.4209 -1.74602 1.74602 0.48 0.00021476 0.000183802 0.0313381 0.0268294 32 1635 26 6.89349e+06 169126 586450. 2029.24 0.52 0.0602324 0.0514259 1214 16 741 1049 98734 26346 2.31036 2.31036 -89.7994 -2.31036 0 0 744469. 2576.02 0.15 0.03 0.00786978 0.00680676 71 -1 53 32 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 4.80 0.02 7136 1 0.02 -1 -1 30332 -1 -1 24 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65820 32 32 377 289 1 233 88 17 17 289 -1 unnamed_device 1.84 1173 0.17 0.00 3.72995 -132.208 -3.72995 3.72995 0.52 0.000345554 0.000302117 0.0580355 0.0503072 36 2697 24 6.89349e+06 338252 648988. 2245.63 0.98 0.133349 0.115054 2243 22 1887 2590 176379 40258 3.83636 3.83636 -150.356 -3.83636 0 0 828058. 2865.25 0.16 0.05 0.0160476 0.014107 161 21 96 32 32 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 4.03 0.02 7080 1 0.01 -1 -1 29916 -1 -1 36 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65296 32 32 338 254 1 198 100 17 17 289 -1 unnamed_device 0.69 848 0.14 0.00 2.7741 -94.4936 -2.7741 2.7741 0.48 0.000324952 0.000286475 0.0443775 0.0378596 36 1982 29 6.89349e+06 507378 648988. 2245.63 1.24 0.141275 0.121014 1630 18 1172 1808 99250 25059 2.72551 2.72551 -108.349 -2.72551 0 0 828058. 2865.25 0.25 0.06 0.0218149 0.0190285 151 -1 124 32 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 5.77 0.02 7208 1 0.01 -1 -1 30288 -1 -1 27 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65984 32 32 408 320 1 264 91 17 17 289 -1 unnamed_device 1.57 1278 0.23 0.00 3.74715 -128.79 -3.74715 3.74715 0.60 0.000424901 0.000359229 0.0765314 0.0661557 36 3412 25 6.89349e+06 380534 648988. 2245.63 1.86 0.198629 0.17282 2808 23 2393 3586 298426 62337 4.12736 4.12736 -155.332 -4.12736 0 0 828058. 2865.25 0.19 0.08 0.0231089 0.0201233 174 54 64 32 64 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 4.29 0.03 6816 1 0.01 -1 -1 29928 -1 -1 17 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65392 32 32 295 247 1 188 81 17 17 289 -1 unnamed_device 1.59 1036 0.11 0.00 2.82445 -105.191 -2.82445 2.82445 0.48 0.000285623 0.000251088 0.0432526 0.0374971 34 2456 26 6.89349e+06 239595 618332. 2139.56 0.85 0.105856 0.0909732 1999 19 1423 2070 138220 32643 3.19186 3.19186 -128.703 -3.19186 0 0 787024. 2723.27 0.16 0.04 0.0124057 0.010884 118 31 54 32 32 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 4.27 0.02 6928 1 0.01 -1 -1 29996 -1 -1 19 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65280 30 32 299 247 1 183 81 17 17 289 -1 unnamed_device 1.50 933 0.11 0.00 3.51049 -112.883 -3.51049 3.51049 0.48 0.000292211 0.000257199 0.0405858 0.0351376 34 2405 23 6.89349e+06 267783 618332. 2139.56 0.88 0.101619 0.0874859 2063 19 1388 2112 144707 33857 3.6252 3.6252 -136.119 -3.6252 0 0 787024. 2723.27 0.16 0.04 0.0122144 0.0106954 121 29 60 30 30 30
+ fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 4.10 0.02 6988 1 0.02 -1 -1 30112 -1 -1 21 28 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64828 28 32 283 237 1 173 81 17 17 289 -1 unnamed_device 1.54 755 0.16 0.00 3.46529 -102.836 -3.46529 3.46529 0.49 0.000277484 0.000242474 0.0603854 0.0519641 30 2201 38 6.89349e+06 295971 556674. 1926.21 0.64 0.104435 0.0895276 1709 20 1232 2092 131813 31818 3.4728 3.4728 -122.213 -3.4728 0 0 706193. 2443.58 0.15 0.04 0.0123533 0.0105638 117 27 56 28 28 28
+ fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 3.83 0.03 6972 1 0.01 -1 -1 29968 -1 -1 16 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64496 32 32 284 226 1 168 80 17 17 289 -1 unnamed_device 0.99 760 0.12 0.00 2.85355 -104.233 -2.85355 2.85355 0.48 0.000283709 0.000246996 0.0448402 0.038903 36 2025 25 6.89349e+06 225501 648988. 2245.63 0.95 0.111437 0.0957911 1607 17 1282 1993 114466 29330 3.12146 3.12146 -123.066 -3.12146 0 0 828058. 2865.25 0.17 0.03 0.0110956 0.00969086 114 -1 96 32 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 4.84 0.03 7056 1 0.02 -1 -1 30188 -1 -1 19 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65444 31 32 305 251 1 191 82 17 17 289 -1 unnamed_device 1.18 778 0.13 0.00 2.95765 -99.8743 -2.95765 2.95765 0.48 0.000383937 0.000321384 0.0492479 0.0424981 38 2101 25 6.89349e+06 267783 678818. 2348.85 1.73 0.115946 0.0987478 1651 20 1084 1517 96768 23669 3.22676 3.22676 -116.767 -3.22676 0 0 902133. 3121.57 0.21 0.04 0.015313 0.0133978 122 26 61 31 31 31
+ fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 3.93 0.02 6904 1 0.01 -1 -1 30108 -1 -1 23 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65268 29 32 316 268 1 201 84 17 17 289 -1 unnamed_device 1.25 1046 0.13 0.00 2.91975 -94.92 -2.91975 2.91975 0.48 0.000287647 0.000252059 0.0470128 0.0405308 34 2488 33 6.89349e+06 324158 618332. 2139.56 0.82 0.112805 0.0967379 2088 19 1376 1775 128728 29806 2.82896 2.82896 -112.746 -2.82896 0 0 787024. 2723.27 0.16 0.04 0.0122244 0.0106401 130 55 29 29 57 29
+ fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 5.55 0.02 7336 1 0.02 -1 -1 30196 -1 -1 27 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65244 32 32 424 311 1 254 91 17 17 289 -1 unnamed_device 1.76 1323 0.21 0.00 3.73615 -131.888 -3.73615 3.73615 0.51 0.000381685 0.00033531 0.0705079 0.0611196 34 3677 50 6.89349e+06 380534 618332. 2139.56 1.60 0.180244 0.155165 2903 22 2151 3467 268731 59570 4.32776 4.32776 -163.557 -4.32776 0 0 787024. 2723.27 0.19 0.06 0.0191346 0.0164739 184 26 128 32 27 27
+ fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 4.84 0.03 7024 1 0.01 -1 -1 30116 -1 -1 25 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65712 32 32 404 318 1 260 89 17 17 289 -1 unnamed_device 1.45 1272 0.18 0.00 3.39994 -121.955 -3.39994 3.39994 0.48 0.000383842 0.000321406 0.0646717 0.0556245 36 3127 22 6.89349e+06 352346 648988. 2245.63 1.40 0.145877 0.12526 2756 21 2704 3680 269581 59597 3.78665 3.78665 -146.556 -3.78665 0 0 828058. 2865.25 0.17 0.06 0.0169594 0.0149221 173 62 62 32 64 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 4.00 0.01 7192 1 0.01 -1 -1 30172 -1 -1 22 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65504 31 32 355 304 1 229 85 17 17 289 -1 unnamed_device 0.86 898 0.13 0.00 2.92465 -94.3339 -2.92465 2.92465 0.50 0.000299946 0.000260153 0.0490466 0.0421942 38 2345 29 6.89349e+06 310065 678818. 2348.85 1.27 0.123065 0.104702 1707 25 1358 1408 93159 24111 2.91696 2.91696 -108.47 -2.91696 0 0 902133. 3121.57 0.17 0.04 0.0159522 0.0139233 143 77 0 0 89 31
+ fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 5.21 0.02 7080 1 0.02 -1 -1 30112 -1 -1 26 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65800 31 32 393 311 1 246 89 17 17 289 -1 unnamed_device 2.30 1162 0.14 0.00 3.38219 -112.428 -3.38219 3.38219 0.48 0.000358243 0.000316893 0.0499627 0.0434241 34 3134 24 6.89349e+06 366440 618332. 2139.56 0.96 0.127904 0.110319 2561 22 1934 2819 228152 52677 3.6803 3.6803 -141.388 -3.6803 0 0 787024. 2723.27 0.16 0.05 0.0172649 0.0151959 170 59 60 30 62 31
+ fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 5.44 0.03 7336 1 0.01 -1 -1 30388 -1 -1 31 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66196 31 32 457 373 1 307 94 17 17 289 -1 unnamed_device 1.63 1493 0.20 0.00 4.1664 -138.329 -4.1664 4.1664 0.48 0.000386124 0.000340355 0.0695881 0.0602125 36 3684 41 6.89349e+06 436909 648988. 2245.63 1.77 0.169343 0.145557 2930 22 2207 2555 183650 41099 4.64685 4.64685 -163.067 -4.64685 0 0 828058. 2865.25 0.16 0.05 0.018437 0.016235 201 111 0 0 124 31
+ fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 4.96 0.03 7424 1 0.01 -1 -1 30092 -1 -1 27 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65668 31 32 415 335 1 269 90 17 17 289 -1 unnamed_device 1.75 1151 0.19 0.00 4.35103 -133.643 -4.35103 4.35103 0.48 0.000527825 0.000461045 0.0696662 0.0604491 36 2970 28 6.89349e+06 380534 648988. 2245.63 1.23 0.155519 0.133864 2149 19 1901 2578 150574 38994 4.42004 4.42004 -157.865 -4.42004 0 0 828058. 2865.25 0.16 0.04 0.0161739 0.0143356 179 86 31 31 89 31
+ fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 4.60 0.02 7264 1 0.01 -1 -1 30244 -1 -1 27 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65204 31 32 393 311 1 249 90 17 17 289 -1 unnamed_device 1.43 1099 0.17 0.00 2.99685 -100.823 -2.99685 2.99685 0.48 0.000350771 0.000308439 0.0631322 0.0546543 36 2910 25 6.89349e+06 380534 648988. 2245.63 1.21 0.142883 0.122865 2264 20 2119 2912 209041 48684 3.19066 3.19066 -122.558 -3.19066 0 0 828058. 2865.25 0.16 0.05 0.0155965 0.0137262 168 58 60 31 62 31
+ fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 4.78 0.03 7084 1 0.02 -1 -1 30416 -1 -1 27 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65800 32 32 408 320 1 264 91 17 17 289 -1 unnamed_device 1.66 1260 0.17 0.00 3.76105 -132.338 -3.76105 3.76105 0.48 0.000341436 0.00030008 0.0592549 0.0512428 34 3361 49 6.89349e+06 380534 618332. 2139.56 1.15 0.151131 0.129808 2671 23 2104 2668 195202 45182 4.25266 4.25266 -161.656 -4.25266 0 0 787024. 2723.27 0.16 0.05 0.0172486 0.0151072 178 42 64 32 64 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 6.04 0.02 7436 1 0.02 -1 -1 30316 -1 -1 31 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66984 32 32 497 381 1 321 95 17 17 289 -1 unnamed_device 1.85 1435 0.20 0.00 4.11298 -135.822 -4.11298 4.11298 0.50 0.000430474 0.000383134 0.0704351 0.0615717 36 4405 32 6.89349e+06 436909 648988. 2245.63 2.09 0.17958 0.154976 3265 24 3221 4768 338964 78397 4.93185 4.93185 -170.823 -4.93185 0 0 828058. 2865.25 0.16 0.07 0.0226217 0.0197462 220 91 62 32 96 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 5.14 0.03 6868 1 0.02 -1 -1 30240 -1 -1 20 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65016 31 32 307 252 1 192 83 17 17 289 -1 unnamed_device 1.62 716 0.12 0.00 3.1312 -104.691 -3.1312 3.1312 0.48 0.00029341 0.000255646 0.0481656 0.0417055 38 2192 40 6.89349e+06 281877 678818. 2348.85 1.46 0.122589 0.105186 1661 20 1393 1885 117087 29132 3.27681 3.27681 -123.837 -3.27681 0 0 902133. 3121.57 0.26 0.06 0.0218907 0.0192026 126 24 62 31 31 31
+ fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 4.95 0.02 7240 1 0.02 -1 -1 30076 -1 -1 27 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65436 31 32 397 313 1 251 90 17 17 289 -1 unnamed_device 1.38 1135 0.17 0.00 4.03914 -130.627 -4.03914 4.03914 0.49 0.000493803 0.000425117 0.0624376 0.0536434 38 3091 25 6.89349e+06 380534 678818. 2348.85 1.61 0.146579 0.125639 2249 21 1753 2188 165048 41408 4.26285 4.26285 -149.979 -4.26285 0 0 902133. 3121.57 0.17 0.05 0.0163079 0.0143432 168 59 62 31 62 31
+ fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 5.75 0.02 7072 1 0.02 -1 -1 30280 -1 -1 28 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65356 32 32 398 314 1 254 92 17 17 289 -1 unnamed_device 1.52 1251 0.19 0.00 3.64679 -123.436 -3.64679 3.64679 0.51 0.000362261 0.000311484 0.0634677 0.0543126 36 3418 25 6.89349e+06 394628 648988. 2245.63 2.20 0.158696 0.135534 2736 17 1660 2545 192133 42445 3.6673 3.6673 -139.831 -3.6673 0 0 828058. 2865.25 0.16 0.04 0.0140311 0.0123649 173 54 62 32 62 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 3.49 0.02 7088 1 0.01 -1 -1 30040 -1 -1 21 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65460 32 32 346 258 1 202 85 17 17 289 -1 unnamed_device 0.55 1025 0.15 0.00 3.45729 -123.528 -3.45729 3.45729 0.48 0.000337829 0.000297687 0.0540861 0.0471173 34 3076 24 6.89349e+06 295971 618332. 2139.56 1.03 0.127126 0.110192 2458 20 1923 3429 267151 59972 3.9616 3.9616 -159.368 -3.9616 0 0 787024. 2723.27 0.16 0.06 0.0146925 0.012908 147 -1 128 32 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 4.44 0.02 7260 1 0.01 -1 -1 30312 -1 -1 28 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65608 32 32 425 344 1 279 92 17 17 289 -1 unnamed_device 1.38 1220 0.18 0.00 3.41219 -116.593 -3.41219 3.41219 0.48 0.00036258 0.000316679 0.0631965 0.0546108 34 3255 34 6.89349e+06 394628 618332. 2139.56 1.11 0.148983 0.127859 2454 19 1889 2213 137845 34332 3.2211 3.2211 -127.925 -3.2211 0 0 787024. 2723.27 0.16 0.04 0.0159423 0.0140323 185 81 25 25 96 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 5.21 0.02 7132 1 0.01 -1 -1 30016 -1 -1 27 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65648 32 32 396 312 1 255 91 17 17 289 -1 unnamed_device 1.77 1357 0.23 0.00 3.41219 -123.078 -3.41219 3.41219 0.60 0.000354413 0.000312368 0.0775413 0.0665763 34 3254 34 6.89349e+06 380534 618332. 2139.56 1.30 0.188353 0.161926 2609 23 2195 3348 241542 54546 3.4637 3.4637 -143.55 -3.4637 0 0 787024. 2723.27 0.16 0.05 0.0173056 0.0152192 169 58 64 32 60 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 4.75 0.03 7136 1 0.01 -1 -1 30192 -1 -1 27 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65828 32 32 406 319 1 260 91 17 17 289 -1 unnamed_device 1.42 1312 0.16 0.00 2.97965 -107.21 -2.97965 2.97965 0.55 0.000364232 0.000321793 0.0554899 0.048033 34 3257 33 6.89349e+06 380534 618332. 2139.56 1.32 0.158237 0.136101 2462 19 2146 2885 188050 44134 3.38941 3.38941 -132.793 -3.38941 0 0 787024. 2723.27 0.16 0.04 0.0155009 0.0136813 175 61 63 32 64 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 5.09 0.03 7004 1 0.01 -1 -1 30280 -1 -1 24 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65632 32 32 377 289 1 233 88 17 17 289 -1 unnamed_device 1.44 929 0.19 0.00 3.80025 -126.708 -3.80025 3.80025 0.61 0.000489663 0.000426894 0.0657824 0.0563123 38 2692 25 6.89349e+06 338252 678818. 2348.85 1.39 0.16838 0.143762 2036 19 1644 2553 181142 40044 4.19146 4.19146 -150.86 -4.19146 0 0 902133. 3121.57 0.17 0.04 0.0144961 0.0127961 161 21 96 32 32 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 4.16 0.03 7160 1 0.01 -1 -1 30272 -1 -1 27 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65460 32 32 408 320 1 264 91 17 17 289 -1 unnamed_device 1.26 1261 0.15 0.00 3.73915 -130.861 -3.73915 3.73915 0.48 0.000348242 0.000305925 0.0549257 0.0473753 34 3187 25 6.89349e+06 380534 618332. 2139.56 0.96 0.136743 0.117928 2462 21 2176 2731 178703 42953 3.88766 3.88766 -151.073 -3.88766 0 0 787024. 2723.27 0.16 0.05 0.0161452 0.0141991 179 50 64 32 64 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 4.25 0.04 7236 1 0.02 -1 -1 30340 -1 -1 31 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66080 31 32 451 369 1 300 94 17 17 289 -1 unnamed_device 1.09 1507 0.21 0.00 4.10944 -129.053 -4.10944 4.10944 0.48 0.000369885 0.000326255 0.0696098 0.0602332 34 3754 33 6.89349e+06 436909 618332. 2139.56 1.10 0.159514 0.137123 2968 21 1995 2384 172472 39714 4.31315 4.31315 -152.548 -4.31315 0 0 787024. 2723.27 0.16 0.05 0.0172956 0.0151983 195 110 0 0 122 31
+ fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 6.02 0.03 7100 1 0.01 -1 -1 30336 -1 -1 28 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66372 32 32 433 347 1 287 92 17 17 289 -1 unnamed_device 2.21 1419 0.20 0.00 3.80935 -130.271 -3.80935 3.80935 0.48 0.000385346 0.000339693 0.0664604 0.0577573 36 3559 34 6.89349e+06 394628 648988. 2245.63 1.69 0.159439 0.137365 2926 23 2378 3392 241490 53424 4.07226 4.07226 -151.744 -4.07226 0 0 828058. 2865.25 0.19 0.07 0.0238892 0.0210926 191 86 32 32 94 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 5.24 0.02 6924 1 0.02 -1 -1 30156 -1 -1 20 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65400 32 32 313 256 1 198 84 17 17 289 -1 unnamed_device 1.43 780 0.12 0.00 2.97485 -103.213 -2.97485 2.97485 0.52 0.00028901 0.000251505 0.0479332 0.0412923 38 2207 35 6.89349e+06 281877 678818. 2348.85 1.89 0.119651 0.101908 1553 21 1183 1609 103419 25874 2.89486 2.89486 -117.595 -2.89486 0 0 902133. 3121.57 0.17 0.03 0.0130005 0.0113612 127 20 63 32 32 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 4.13 0.03 7068 1 0.02 -1 -1 29972 -1 -1 22 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65136 32 32 371 315 1 249 86 17 17 289 -1 unnamed_device 1.15 1056 0.15 0.00 3.36819 -113.616 -3.36819 3.36819 0.49 0.000324105 0.000283681 0.057908 0.0499204 42 2855 37 6.89349e+06 310065 744469. 2576.02 1.03 0.136049 0.117103 2090 20 1654 1932 143560 34380 3.62564 3.62564 -136.281 -3.62564 0 0 949917. 3286.91 0.18 0.04 0.0142783 0.0125283 153 91 0 0 94 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 6.14 0.03 7408 1 0.02 -1 -1 30500 -1 -1 30 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66368 32 32 470 352 1 298 94 17 17 289 -1 unnamed_device 1.62 1373 0.24 0.00 4.30789 -141.381 -4.30789 4.30789 0.58 0.000407867 0.00036 0.0895769 0.0777326 38 3911 33 6.89349e+06 422815 678818. 2348.85 2.19 0.232046 0.20186 2944 23 2686 3635 255890 59668 5.2695 5.2695 -176.492 -5.2695 0 0 902133. 3121.57 0.18 0.07 0.0218646 0.0191997 209 53 96 32 64 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 4.24 0.03 7044 1 0.01 -1 -1 30152 -1 -1 23 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65544 32 32 369 285 1 225 87 17 17 289 -1 unnamed_device 1.33 986 0.15 0.00 3.029 -104.151 -3.029 3.029 0.48 0.000339876 0.000300064 0.0515633 0.0448939 34 2917 29 6.89349e+06 324158 618332. 2139.56 1.00 0.129335 0.11142 2123 21 1871 2701 197925 46898 3.33526 3.33526 -128.636 -3.33526 0 0 787024. 2723.27 0.16 0.05 0.0155128 0.0135696 156 31 92 32 32 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 4.35 0.03 6872 1 0.01 -1 -1 30032 -1 -1 32 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65252 30 32 299 247 1 183 94 17 17 289 -1 unnamed_device 1.14 977 0.18 0.00 3.50749 -114.101 -3.50749 3.50749 0.59 0.000422846 0.000351989 0.0569782 0.0480639 34 2354 29 6.89349e+06 451003 618332. 2139.56 1.02 0.138082 0.117336 1952 21 1252 1859 127648 29139 3.44165 3.44165 -128.737 -3.44165 0 0 787024. 2723.27 0.16 0.04 0.0128928 0.0112269 129 29 60 30 30 30
+ fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 5.91 0.03 7352 1 0.02 -1 -1 30612 -1 -1 35 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 67112 32 32 532 414 1 356 99 17 17 289 -1 unnamed_device 1.54 1630 0.24 0.00 4.57543 -151.103 -4.57543 4.57543 0.49 0.000439822 0.000389864 0.0815304 0.0710771 38 4721 39 6.89349e+06 493284 678818. 2348.85 2.29 0.195801 0.168829 3309 20 2690 3287 239816 53925 5.36264 5.36264 -185.859 -5.36264 0 0 902133. 3121.57 0.17 0.06 0.0197071 0.0173248 239 109 32 32 128 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 4.06 0.02 7184 1 0.01 -1 -1 30052 -1 -1 23 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65764 32 32 377 289 1 225 87 17 17 289 -1 unnamed_device 1.13 1073 0.16 0.00 3.55139 -125.942 -3.55139 3.55139 0.48 0.000342213 0.000301324 0.0564051 0.0491268 34 2916 21 6.89349e+06 324158 618332. 2139.56 0.96 0.129733 0.112234 2222 22 2204 3023 238139 52496 3.9539 3.9539 -150.653 -3.9539 0 0 787024. 2723.27 0.16 0.05 0.016202 0.0142038 159 31 96 32 32 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 4.31 0.02 7116 1 0.01 -1 -1 30000 -1 -1 33 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65112 32 32 284 226 1 168 97 17 17 289 -1 unnamed_device 0.46 697 0.14 0.00 2.97285 -102.615 -2.97285 2.97285 0.51 0.000278769 0.000243364 0.0473919 0.0404614 38 2164 34 6.89349e+06 465097 678818. 2348.85 1.92 0.121609 0.103427 1612 23 1305 2147 145489 35985 3.23576 3.23576 -123.365 -3.23576 0 0 902133. 3121.57 0.17 0.04 0.0131146 0.0114093 123 -1 96 32 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 6.00 0.02 7376 1 0.01 -1 -1 30452 -1 -1 28 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65848 32 32 439 321 1 267 92 17 17 289 -1 unnamed_device 1.70 1270 0.18 0.00 4.33489 -144.285 -4.33489 4.33489 0.48 0.000395562 0.000349783 0.0694527 0.0605526 40 3361 26 6.89349e+06 394628 706193. 2443.58 2.16 0.16751 0.144445 3069 22 2536 4022 403897 94221 5.3083 5.3083 -181.767 -5.3083 0 0 926341. 3205.33 0.18 0.08 0.0192103 0.0168923 194 26 128 32 32 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 3.79 0.03 6988 1 0.01 -1 -1 30052 -1 -1 16 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65168 32 32 284 226 1 168 80 17 17 289 -1 unnamed_device 0.89 790 0.13 0.00 2.86155 -105.841 -2.86155 2.86155 0.48 0.000282235 0.000246439 0.0464505 0.0402417 34 2368 24 6.89349e+06 225501 618332. 2139.56 1.01 0.109362 0.0939332 1924 20 1535 2478 214810 47770 3.12146 3.12146 -130.534 -3.12146 0 0 787024. 2723.27 0.16 0.05 0.0123282 0.0107251 114 -1 96 32 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 3.70 0.02 6872 1 0.01 -1 -1 30032 -1 -1 19 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65036 30 32 299 247 1 185 81 17 17 289 -1 unnamed_device 1.03 818 0.10 0.00 2.94965 -97.7253 -2.94965 2.94965 0.48 0.000282797 0.000246885 0.0371795 0.0319632 34 2278 23 6.89349e+06 267783 618332. 2139.56 0.82 0.0979761 0.0839389 1788 18 1314 1780 112411 27419 3.14876 3.14876 -119.925 -3.14876 0 0 787024. 2723.27 0.16 0.03 0.0115767 0.0101324 121 29 60 30 30 30
+ fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 4.99 0.02 7232 1 0.02 -1 -1 30160 -1 -1 31 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65668 29 32 397 323 1 254 92 17 17 289 -1 unnamed_device 1.56 1301 0.21 0.00 3.42924 -108.163 -3.42924 3.42924 0.58 0.000503681 0.000435806 0.0707368 0.0606342 34 2907 45 6.89349e+06 436909 618332. 2139.56 1.22 0.177341 0.151966 2360 22 1975 2600 174542 40868 3.426 3.426 -126.823 -3.426 0 0 787024. 2723.27 0.16 0.05 0.0166299 0.0145517 171 81 29 29 85 29
+ fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 5.21 0.03 7128 1 0.01 -1 -1 30356 -1 -1 26 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65496 32 32 408 320 1 264 90 17 17 289 -1 unnamed_device 1.83 1036 0.17 0.00 4.20154 -139.906 -4.20154 4.20154 0.48 0.000362461 0.00031952 0.0609209 0.0528668 34 3799 47 6.89349e+06 366440 618332. 2139.56 1.41 0.158863 0.136393 2440 23 2711 3837 246454 62538 5.02875 5.02875 -173.16 -5.02875 0 0 787024. 2723.27 0.16 0.06 0.018058 0.0156661 178 53 64 32 64 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 4.70 0.02 7116 1 0.01 -1 -1 30256 -1 -1 26 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65560 32 32 408 320 1 264 90 17 17 289 -1 unnamed_device 1.54 1217 0.15 0.00 4.12024 -140.678 -4.12024 4.12024 0.52 0.000364168 0.000321915 0.0519107 0.0450357 34 3487 32 6.89349e+06 366440 618332. 2139.56 1.08 0.137032 0.117804 2799 22 2388 3383 241857 56073 4.56375 4.56375 -171.165 -4.56375 0 0 787024. 2723.27 0.16 0.06 0.0173941 0.0153115 175 55 64 32 64 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 3.92 0.02 7168 1 0.02 -1 -1 30224 -1 -1 20 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65560 32 32 346 288 1 218 84 17 17 289 -1 unnamed_device 1.06 953 0.13 0.00 3.54849 -121.104 -3.54849 3.54849 0.49 0.000303122 0.000263839 0.0506384 0.0436282 38 2288 26 6.89349e+06 281877 678818. 2348.85 0.99 0.119425 0.102341 1867 19 1269 1461 103065 23434 3.6861 3.6861 -133.309 -3.6861 0 0 902133. 3121.57 0.17 0.03 0.0131081 0.0115153 141 55 32 32 64 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 4.39 0.02 7036 1 0.00 -1 -1 30216 -1 -1 22 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65288 31 32 355 304 1 231 85 17 17 289 -1 unnamed_device 1.46 1180 0.15 0.00 3.36019 -112.825 -3.36019 3.36019 0.48 0.000314175 0.00027564 0.053891 0.0464659 34 2974 41 6.89349e+06 310065 618332. 2139.56 1.04 0.131175 0.11257 2331 20 1525 1922 148699 32991 3.4058 3.4058 -129.171 -3.4058 0 0 787024. 2723.27 0.16 0.04 0.0139647 0.0122288 146 82 0 0 89 31
+ fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 5.45 0.01 7076 1 0.01 -1 -1 30216 -1 -1 27 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65716 30 32 377 300 1 236 89 17 17 289 -1 unnamed_device 1.90 1159 0.19 0.00 3.0872 -104.271 -3.0872 3.0872 0.59 0.000339086 0.000295893 0.0621843 0.0535257 34 2981 27 6.89349e+06 380534 618332. 2139.56 1.36 0.166809 0.143178 2278 20 1777 2582 177252 41782 3.13251 3.13251 -122.229 -3.13251 0 0 787024. 2723.27 0.16 0.04 0.0150139 0.0131703 162 52 60 30 57 30
+ fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 4.61 0.03 7372 1 0.02 -1 -1 30196 -1 -1 27 28 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65144 28 32 337 265 1 203 87 17 17 289 -1 unnamed_device 1.14 812 0.14 0.00 3.64495 -106.606 -3.64495 3.64495 0.48 0.000306939 0.000268592 0.0559355 0.0483815 34 2812 36 6.89349e+06 380534 618332. 2139.56 1.59 0.136283 0.11654 1885 20 1632 2377 165789 39787 4.15226 4.15226 -136.472 -4.15226 0 0 787024. 2723.27 0.15 0.04 0.0136017 0.0119302 145 20 84 28 28 28
+ fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 4.83 0.03 7136 1 0.01 -1 -1 30120 -1 -1 21 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65596 30 32 328 276 1 208 83 17 17 289 -1 unnamed_device 1.61 941 0.14 0.00 3.5314 -111.717 -3.5314 3.5314 0.48 0.000303033 0.000265677 0.0518641 0.0448536 36 2536 29 6.89349e+06 295971 648988. 2245.63 1.24 0.122717 0.105109 2089 22 1634 2250 174455 38804 3.81394 3.81394 -137.546 -3.81394 0 0 828058. 2865.25 0.21 0.04 0.0142334 0.0124348 136 58 30 30 60 30
+ fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 5.29 0.04 7064 1 0.01 -1 -1 29976 -1 -1 21 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65360 32 32 362 309 1 245 85 17 17 289 -1 unnamed_device 1.69 1256 0.18 0.00 3.0132 -105.969 -3.0132 3.0132 0.61 0.000449574 0.000388928 0.0625074 0.0537813 36 2835 25 6.89349e+06 295971 648988. 2245.63 1.32 0.150493 0.129365 2337 18 1670 1960 144246 32450 3.44771 3.44771 -127.782 -3.44771 0 0 828058. 2865.25 0.19 0.04 0.0157694 0.0138777 150 88 0 0 91 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 3.28 0.03 7076 1 0.02 -1 -1 30068 -1 -1 37 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65616 31 32 337 253 1 197 100 17 17 289 -1 unnamed_device 0.57 1016 0.19 0.00 3.48039 -117.837 -3.48039 3.48039 0.48 0.000323871 0.000283353 0.0575424 0.0493178 32 3308 41 6.89349e+06 521472 586450. 2029.24 0.74 0.11133 0.0955079 2360 22 1835 2981 232227 53174 3.7781 3.7781 -143.697 -3.7781 0 0 744469. 2576.02 0.15 0.05 0.0149654 0.0130654 151 -1 124 31 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 4.97 0.02 7084 1 0.02 -1 -1 30252 -1 -1 26 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65608 32 32 408 320 1 257 90 17 17 289 -1 unnamed_device 1.13 1072 0.15 0.00 4.05014 -134.076 -4.05014 4.05014 0.48 0.00035532 0.000311788 0.0607806 0.0527159 40 3305 46 6.89349e+06 366440 706193. 2443.58 1.84 0.15919 0.137113 2761 27 2487 3319 284941 70728 4.91764 4.91764 -167.106 -4.91764 0 0 926341. 3205.33 0.18 0.06 0.0196533 0.0171924 173 57 64 32 64 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 4.85 0.03 7088 1 0.02 -1 -1 30104 -1 -1 26 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65664 32 32 408 320 1 256 90 17 17 289 -1 unnamed_device 1.39 1297 0.18 0.00 3.99568 -138.117 -3.99568 3.99568 0.48 0.000365348 0.000322484 0.0632076 0.0550573 34 4050 50 6.89349e+06 366440 618332. 2139.56 1.47 0.160971 0.138457 2820 23 2723 3833 304635 69131 4.76745 4.76745 -175.439 -4.76745 0 0 787024. 2723.27 0.16 0.06 0.0181204 0.0159289 171 62 64 32 64 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 4.63 0.02 7064 1 0.01 -1 -1 30064 -1 -1 27 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65520 32 32 400 316 1 258 91 17 17 289 -1 unnamed_device 1.48 1405 0.18 0.00 3.36084 -119.46 -3.36084 3.36084 0.48 0.000358091 0.00031552 0.0616331 0.0535661 36 3031 19 6.89349e+06 380534 648988. 2245.63 1.18 0.13933 0.120439 2457 22 1909 2800 176811 40765 3.73625 3.73625 -141.821 -3.73625 0 0 828058. 2865.25 0.16 0.05 0.016835 0.0148193 173 62 60 30 64 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 4.22 0.06 6920 1 0.01 -1 -1 30036 -1 -1 19 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65332 30 32 299 247 1 183 81 17 17 289 -1 unnamed_device 1.46 925 0.13 0.00 3.20646 -106.547 -3.20646 3.20646 0.48 0.000284159 0.000248349 0.0482676 0.0417708 34 2412 21 6.89349e+06 267783 618332. 2139.56 0.84 0.109283 0.0939928 2017 18 1208 1717 141579 30930 3.3557 3.3557 -128.004 -3.3557 0 0 787024. 2723.27 0.16 0.03 0.0117859 0.0103333 121 29 60 30 30 30
+ fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 5.17 0.02 7172 1 0.01 -1 -1 30128 -1 -1 26 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65256 30 32 386 306 1 241 88 17 17 289 -1 unnamed_device 2.06 1055 0.17 0.00 3.92648 -126.993 -3.92648 3.92648 0.48 0.000353798 0.000312324 0.064535 0.0559067 36 2715 22 6.89349e+06 366440 648988. 2245.63 1.19 0.14279 0.122954 2265 18 1845 2554 168658 39839 4.43278 4.43278 -154.882 -4.43278 0 0 828058. 2865.25 0.16 0.04 0.0147173 0.0130228 166 58 60 30 60 30
+ fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 4.85 0.03 7188 1 0.02 -1 -1 30496 -1 -1 30 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66716 32 32 470 382 1 316 94 17 17 289 -1 unnamed_device 1.01 1473 0.19 0.00 3.81941 -129.653 -3.81941 3.81941 0.50 0.000378261 0.000329708 0.0673927 0.0577692 36 3859 48 6.89349e+06 422815 648988. 2245.63 1.67 0.172613 0.147129 2822 23 2280 2365 186480 42189 4.17685 4.17685 -154.792 -4.17685 0 0 828058. 2865.25 0.19 0.07 0.0244164 0.0211683 204 106 0 0 128 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 5.02 0.02 7260 1 0.01 -1 -1 30324 -1 -1 29 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66036 31 32 427 343 1 278 92 17 17 289 -1 unnamed_device 1.47 1252 0.18 0.00 4.20654 -137.111 -4.20654 4.20654 0.49 0.00036971 0.000327075 0.0620118 0.0538921 36 2903 30 6.89349e+06 408721 648988. 2245.63 1.45 0.149579 0.128813 2174 20 2051 2586 147960 37821 4.41635 4.41635 -156.949 -4.41635 0 0 828058. 2865.25 0.20 0.04 0.0165509 0.0146064 185 79 31 31 93 31
+ fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 5.21 0.03 7160 1 0.01 -1 -1 30324 -1 -1 28 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65984 30 32 407 331 1 261 90 17 17 289 -1 unnamed_device 1.78 1054 0.15 0.00 3.44329 -107.559 -3.44329 3.44329 0.48 0.000358452 0.000317222 0.0522475 0.0452518 38 2894 27 6.89349e+06 394628 678818. 2348.85 1.47 0.13366 0.114909 2093 23 2199 3089 177564 44925 4.1578 4.1578 -133.519 -4.1578 0 0 902133. 3121.57 0.17 0.05 0.0174715 0.0153173 175 83 26 26 90 30
+ fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 5.29 0.02 7036 1 0.01 -1 -1 30196 -1 -1 26 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65732 32 32 408 320 1 264 90 17 17 289 -1 unnamed_device 2.14 1270 0.16 0.00 4.16444 -143.785 -4.16444 4.16444 0.49 0.000370724 0.000327461 0.055986 0.0488683 34 3542 24 6.89349e+06 366440 618332. 2139.56 1.10 0.143429 0.123897 2718 22 2277 3170 229757 52639 4.55265 4.55265 -167.58 -4.55265 0 0 787024. 2723.27 0.19 0.07 0.0223349 0.0197042 177 58 64 32 64 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 4.60 0.02 7216 1 0.02 -1 -1 30176 -1 -1 30 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65684 29 32 391 320 1 251 91 17 17 289 -1 unnamed_device 1.65 1193 0.14 0.00 3.70795 -113.896 -3.70795 3.70795 0.50 0.000378255 0.000318061 0.0489765 0.0417144 34 3253 34 6.89349e+06 422815 618332. 2139.56 1.03 0.135295 0.115395 2448 20 1786 2351 170996 40640 3.63016 3.63016 -130.923 -3.63016 0 0 787024. 2723.27 0.16 0.05 0.0156705 0.0138359 170 81 26 26 85 29
+ fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 3.30 0.02 6900 1 0.01 -1 -1 29996 -1 -1 16 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65204 32 32 284 226 1 168 80 17 17 289 -1 unnamed_device 0.55 784 0.12 0.00 2.85235 -103.446 -2.85235 2.85235 0.48 0.000284943 0.00024896 0.046732 0.0404274 36 2046 27 6.89349e+06 225501 648988. 2245.63 0.92 0.108771 0.0935223 1745 21 1581 2576 178644 41548 3.07926 3.07926 -125.168 -3.07926 0 0 828058. 2865.25 0.16 0.04 0.0128932 0.011256 114 -1 96 32 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 5.29 0.02 7208 1 0.02 -1 -1 30072 -1 -1 27 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65544 32 32 408 320 1 259 91 17 17 289 -1 unnamed_device 1.36 1254 0.17 0.00 4.05227 -136.69 -4.05227 4.05227 0.48 0.000369863 0.000325225 0.0596406 0.0517345 38 3178 25 6.89349e+06 380534 678818. 2348.85 1.96 0.145518 0.12519 2351 22 1944 2773 193335 45573 4.52688 4.52688 -161.652 -4.52688 0 0 902133. 3121.57 0.17 0.05 0.0176527 0.0155402 174 62 64 32 64 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 6.76 0.03 7112 1 0.01 -1 -1 30124 -1 -1 25 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65688 32 32 408 320 1 263 89 17 17 289 -1 unnamed_device 2.13 1122 0.16 0.00 4.10498 -137.69 -4.10498 4.10498 0.48 0.00036696 0.000323792 0.0629138 0.0542843 38 3783 35 6.89349e+06 352346 678818. 2348.85 2.67 0.156066 0.133659 2426 23 2451 3407 244656 57774 5.14165 5.14165 -172.045 -5.14165 0 0 902133. 3121.57 0.17 0.06 0.0179143 0.0157653 176 62 64 32 64 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 4.43 0.03 6976 1 0.01 -1 -1 30180 -1 -1 19 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65280 32 32 316 268 1 204 83 17 17 289 -1 unnamed_device 1.38 844 0.11 0.00 2.7541 -91.2491 -2.7541 2.7541 0.48 0.000280373 0.000243553 0.0443593 0.0382116 38 2387 38 6.89349e+06 267783 678818. 2348.85 1.18 0.122473 0.104788 1721 20 1273 1566 110287 26966 3.05956 3.05956 -107.991 -3.05956 0 0 902133. 3121.57 0.17 0.03 0.0124712 0.0109 128 47 32 32 54 27
+ fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 3.02 0.03 6900 1 0.01 -1 -1 30064 -1 -1 17 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64968 31 32 277 222 1 164 80 17 17 289 -1 unnamed_device 0.67 822 0.11 0.00 2.84755 -99.0989 -2.84755 2.84755 0.48 0.000276419 0.000242944 0.0399785 0.0345444 32 2162 23 6.89349e+06 239595 586450. 2029.24 0.52 0.0753826 0.0650971 1725 20 1333 2088 150622 35021 3.02436 3.02436 -120.405 -3.02436 0 0 744469. 2576.02 0.15 0.04 0.0120369 0.0104931 112 -1 93 31 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 4.70 0.03 7064 1 0.01 -1 -1 30100 -1 -1 25 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65296 32 32 382 304 1 240 89 17 17 289 -1 unnamed_device 1.35 1150 0.18 0.00 3.73338 -121.742 -3.73338 3.73338 0.59 0.000399759 0.000354838 0.0624599 0.0531808 34 2839 28 6.89349e+06 352346 618332. 2139.56 1.17 0.15966 0.136478 2265 21 1582 1995 152851 34585 3.77199 3.77199 -137.497 -3.77199 0 0 787024. 2723.27 0.17 0.04 0.0153473 0.0134883 158 56 60 32 58 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 4.85 0.03 7168 1 0.01 -1 -1 30092 -1 -1 26 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65368 32 32 407 331 1 263 90 17 17 289 -1 unnamed_device 1.90 1273 0.13 0.00 4.10444 -129.39 -4.10444 4.10444 0.48 0.000354988 0.000313174 0.0472159 0.0406071 34 3160 25 6.89349e+06 366440 618332. 2139.56 1.06 0.126474 0.108439 2553 16 1557 1816 120302 28851 4.58855 4.58855 -160.951 -4.58855 0 0 787024. 2723.27 0.16 0.04 0.0135139 0.0119122 172 81 28 28 88 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 3.47 0.03 7352 1 0.01 -1 -1 30188 -1 -1 41 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65788 32 32 400 286 1 232 105 17 17 289 -1 unnamed_device 0.60 1352 0.23 0.00 3.88358 -135.983 -3.88358 3.88358 0.51 0.000420542 0.000373042 0.0697708 0.0602842 28 3206 24 6.89349e+06 577847 531479. 1839.03 0.83 0.123197 0.106386 2766 20 2152 3581 253317 58009 4.69979 4.69979 -172.515 -4.69979 0 0 648988. 2245.63 0.14 0.05 0.0163673 0.0144242 183 -1 156 32 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 4.39 0.02 7080 1 0.01 -1 -1 30348 -1 -1 28 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65676 30 32 374 298 1 235 90 17 17 289 -1 unnamed_device 1.39 1222 0.15 0.00 3.1154 -105.737 -3.1154 3.1154 0.48 0.000332133 0.000291423 0.0517413 0.0448306 36 2783 24 6.89349e+06 394628 648988. 2245.63 1.11 0.125537 0.107881 2413 21 2109 3023 226360 49290 3.05021 3.05021 -122.158 -3.05021 0 0 828058. 2865.25 0.16 0.05 0.0155072 0.0136122 162 47 60 30 56 30
+ fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 3.87 0.03 7072 1 0.01 -1 -1 30140 -1 -1 22 27 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65256 27 32 275 232 1 168 81 17 17 289 -1 unnamed_device 1.18 722 0.13 0.00 3.34119 -96.923 -3.34119 3.34119 0.48 0.000267446 0.000233746 0.0498653 0.0427824 34 1890 23 6.89349e+06 310065 618332. 2139.56 0.84 0.106354 0.0908697 1592 20 1342 1931 132971 32525 3.55595 3.55595 -120.012 -3.55595 0 0 787024. 2723.27 0.16 0.04 0.0125649 0.011024 114 26 54 27 27 27
+ fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 6.29 0.03 7364 1 0.01 -1 -1 30524 -1 -1 32 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66808 32 32 494 379 1 323 96 17 17 289 -1 unnamed_device 1.93 1705 0.30 0.00 4.02004 -137.278 -4.02004 4.02004 0.60 0.000614795 0.000538761 0.0938662 0.0809555 36 4039 33 6.89349e+06 451003 648988. 2245.63 1.96 0.238534 0.206345 3338 22 2431 3476 252255 57158 4.42265 4.42265 -160.13 -4.42265 0 0 828058. 2865.25 0.16 0.06 0.0199489 0.017593 218 85 62 31 95 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 5.04 0.02 7136 1 0.02 -1 -1 30508 -1 -1 31 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66304 31 32 457 373 1 306 94 17 17 289 -1 unnamed_device 1.80 1267 0.19 0.00 4.18464 -133.68 -4.18464 4.18464 0.48 0.000391016 0.000345899 0.0715346 0.0618174 40 2915 22 6.89349e+06 436909 706193. 2443.58 1.17 0.156949 0.135596 2540 21 2040 2385 227939 52016 4.41635 4.41635 -158.281 -4.41635 0 0 926341. 3205.33 0.18 0.05 0.018496 0.016383 201 105 0 0 124 31
+ fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 4.90 0.04 6928 1 0.01 -1 -1 30076 -1 -1 21 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65400 32 32 356 305 1 244 85 17 17 289 -1 unnamed_device 1.85 1048 0.14 0.00 3.40259 -110.194 -3.40259 3.40259 0.48 0.000323637 0.000284321 0.0540148 0.0467394 36 2693 24 6.89349e+06 295971 648988. 2245.63 1.13 0.125974 0.108346 2044 20 1736 2007 165768 37438 3.4169 3.4169 -128.222 -3.4169 0 0 828058. 2865.25 0.16 0.04 0.0144016 0.0126572 149 86 0 0 89 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 4.59 0.02 7004 1 0.01 -1 -1 29968 -1 -1 23 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65704 32 32 365 283 1 225 87 17 17 289 -1 unnamed_device 1.57 1259 0.16 0.00 3.69995 -127.935 -3.69995 3.69995 0.48 0.000332704 0.000291206 0.0561114 0.0485703 34 3059 28 6.89349e+06 324158 618332. 2139.56 1.11 0.133153 0.11472 2441 25 1969 2852 216282 48729 4.27956 4.27956 -159.355 -4.27956 0 0 787024. 2723.27 0.16 0.05 0.0172476 0.0151387 152 31 90 30 32 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 4.77 0.03 7316 1 0.01 -1 -1 30340 -1 -1 31 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65620 31 32 445 338 1 280 94 17 17 289 -1 unnamed_device 1.58 1393 0.21 0.00 3.70295 -127.097 -3.70295 3.70295 0.49 0.000405394 0.000359483 0.0694503 0.0603768 34 3532 26 6.89349e+06 436909 618332. 2139.56 1.11 0.157541 0.136123 2878 24 2541 3559 259124 60538 4.31856 4.31856 -159.95 -4.31856 0 0 787024. 2723.27 0.16 0.06 0.0207472 0.0181653 195 50 87 31 62 31
+ fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 5.25 0.02 7132 1 0.01 -1 -1 30128 -1 -1 29 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65708 30 32 376 300 1 235 91 17 17 289 -1 unnamed_device 1.90 1096 0.17 0.00 3.56859 -112.195 -3.56859 3.56859 0.48 0.000351472 0.000297121 0.055414 0.0476358 36 3045 21 6.89349e+06 408721 648988. 2245.63 1.42 0.130032 0.111195 2379 22 1853 2775 195803 45033 3.534 3.534 -128.704 -3.534 0 0 828058. 2865.25 0.16 0.05 0.0157147 0.0137829 163 50 58 30 58 30
+ fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 4.56 0.02 7040 1 0.01 -1 -1 30108 -1 -1 28 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65944 32 32 408 320 1 260 92 17 17 289 -1 unnamed_device 1.22 1339 0.20 0.00 4.05014 -140.807 -4.05014 4.05014 0.48 0.00048613 0.000433365 0.0677118 0.0586165 34 3829 36 6.89349e+06 394628 618332. 2139.56 1.31 0.157551 0.135531 3024 24 2312 3154 290061 61509 4.39115 4.39115 -164.741 -4.39115 0 0 787024. 2723.27 0.16 0.06 0.0188121 0.0163146 173 61 64 32 64 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 4.55 0.03 7344 1 0.01 -1 -1 30216 -1 -1 28 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65636 32 32 406 319 1 260 92 17 17 289 -1 unnamed_device 1.49 1275 0.18 0.00 3.07811 -107.685 -3.07811 3.07811 0.48 0.00039721 0.000353855 0.0588216 0.051101 34 3349 34 6.89349e+06 394628 618332. 2139.56 1.03 0.144929 0.125017 2596 20 2056 2795 198150 47030 3.1071 3.1071 -126.436 -3.1071 0 0 787024. 2723.27 0.19 0.06 0.0202214 0.0178511 175 61 63 32 64 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 3.36 0.02 6980 1 0.01 -1 -1 30060 -1 -1 21 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65196 29 32 291 242 1 178 82 17 17 289 -1 unnamed_device 0.74 705 0.12 0.00 3.0572 -96.4687 -3.0572 3.0572 0.48 0.000292042 0.000255616 0.0461705 0.0399474 34 2045 19 6.89349e+06 295971 618332. 2139.56 0.80 0.103811 0.0891043 1656 22 1605 2134 174058 40446 3.37406 3.37406 -120.326 -3.37406 0 0 787024. 2723.27 0.16 0.04 0.0133454 0.0114546 117 28 58 29 29 29
+ fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 4.27 0.02 6868 1 0.01 -1 -1 30036 -1 -1 20 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65032 32 32 335 291 1 222 84 17 17 289 -1 unnamed_device 1.33 951 0.13 0.00 3.44149 -101.282 -3.44149 3.44149 0.48 0.000299305 0.000260678 0.047276 0.0407633 36 2779 32 6.89349e+06 281877 648988. 2245.63 1.01 0.117267 0.10031 1994 23 1742 2046 159834 35558 3.6866 3.6866 -126.309 -3.6866 0 0 828058. 2865.25 0.17 0.04 0.0150027 0.0130928 135 79 0 0 82 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 4.08 0.03 7160 1 0.01 -1 -1 30120 -1 -1 24 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66036 31 32 367 283 1 225 87 17 17 289 -1 unnamed_device 1.01 1168 0.16 0.00 3.71715 -126.494 -3.71715 3.71715 0.48 0.000345377 0.00030253 0.0573536 0.0494965 36 2773 21 6.89349e+06 338252 648988. 2245.63 1.15 0.13187 0.113724 2192 20 1786 2645 170980 39925 3.81736 3.81736 -146.42 -3.81736 0 0 828058. 2865.25 0.17 0.05 0.0154525 0.0134596 153 29 93 31 31 31
+ fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 3.76 0.01 6900 1 0.01 -1 -1 30180 -1 -1 21 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65344 29 32 301 258 1 193 82 17 17 289 -1 unnamed_device 1.09 891 0.13 0.00 2.8214 -88.1482 -2.8214 2.8214 0.49 0.000274954 0.000239655 0.0473374 0.0404756 34 2276 22 6.89349e+06 295971 618332. 2139.56 0.83 0.107495 0.0913872 1826 21 1318 1554 127920 28867 3.0101 3.0101 -103.431 -3.0101 0 0 787024. 2723.27 0.16 0.03 0.0124509 0.0108194 123 48 29 29 52 26
+ fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 4.28 0.03 6820 1 0.01 -1 -1 30056 -1 -1 18 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65408 32 32 315 257 1 194 82 17 17 289 -1 unnamed_device 1.34 973 0.11 0.00 3.0872 -108.479 -3.0872 3.0872 0.49 0.000302989 0.000265234 0.0400569 0.0347017 34 2540 25 6.89349e+06 253689 618332. 2139.56 0.99 0.105855 0.0909343 2153 20 1688 2373 178414 40409 3.48905 3.48905 -138.507 -3.48905 0 0 787024. 2723.27 0.19 0.05 0.0156552 0.0137101 127 31 64 32 32 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 4.48 0.02 7120 1 0.02 -1 -1 30064 -1 -1 27 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65792 31 32 389 309 1 242 90 17 17 289 -1 unnamed_device 1.42 1144 0.17 0.00 3.40914 -115.249 -3.40914 3.40914 0.50 0.000351903 0.000311536 0.0597772 0.052081 34 3206 35 6.89349e+06 380534 618332. 2139.56 0.97 0.14304 0.123813 2536 21 2185 2908 224548 49762 3.8177 3.8177 -144.247 -3.8177 0 0 787024. 2723.27 0.16 0.05 0.0165588 0.0145764 164 60 58 31 62 31
+ fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 4.00 0.03 6952 1 0.01 -1 -1 30056 -1 -1 21 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65032 31 32 310 264 1 196 84 17 17 289 -1 unnamed_device 1.23 892 0.13 0.00 2.61882 -89.4843 -2.61882 2.61882 0.48 0.000292925 0.000255122 0.0475452 0.0410423 42 2107 20 6.89349e+06 295971 744469. 2576.02 0.87 0.107049 0.0922038 1827 17 1171 1450 119035 26624 2.88726 2.88726 -105.075 -2.88726 0 0 949917. 3286.91 0.18 0.03 0.0112524 0.00984956 125 49 31 31 53 31
+ fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 4.58 0.02 7192 1 0.01 -1 -1 30236 -1 -1 25 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65532 32 32 384 308 1 242 89 17 17 289 -1 unnamed_device 1.61 1234 0.16 0.00 3.36939 -112.85 -3.36939 3.36939 0.48 0.0003349 0.000293737 0.0565363 0.048911 34 3032 18 6.89349e+06 352346 618332. 2139.56 1.05 0.128261 0.110238 2448 21 1824 2553 212446 47110 3.6221 3.6221 -137.073 -3.6221 0 0 787024. 2723.27 0.16 0.05 0.0154845 0.0135471 161 56 52 26 64 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 5.68 0.03 7300 1 0.01 -1 -1 30164 -1 -1 31 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66440 31 32 424 341 1 277 94 17 17 289 -1 unnamed_device 1.66 1305 0.20 0.00 3.97498 -129.675 -3.97498 3.97498 0.48 0.000376287 0.000332038 0.0672117 0.0583262 36 3467 36 6.89349e+06 436909 648988. 2245.63 1.94 0.162884 0.139915 2831 20 2245 3260 259887 57431 4.03654 4.03654 -151.77 -4.03654 0 0 828058. 2865.25 0.19 0.07 0.0224325 0.0197304 188 88 31 31 92 31
+ fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 6.92 0.03 7052 1 0.01 -1 -1 30024 -1 -1 20 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65392 32 32 334 280 1 216 84 17 17 289 -1 unnamed_device 2.33 965 0.14 0.00 3.22061 -101.29 -3.22061 3.22061 0.56 0.000304952 0.000266149 0.0566241 0.0485618 38 2690 28 6.89349e+06 281877 678818. 2348.85 2.50 0.147237 0.12638 2163 23 1537 2089 213148 54329 2.96891 2.96891 -114.369 -2.96891 0 0 902133. 3121.57 0.17 0.05 0.0151188 0.013225 136 54 32 32 60 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 4.24 0.03 7000 1 0.01 -1 -1 30060 -1 -1 19 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65316 32 32 340 284 1 218 83 17 17 289 -1 unnamed_device 1.11 1021 0.13 0.00 3.1044 -107.068 -3.1044 3.1044 0.48 0.000304717 0.000265493 0.0498018 0.0429049 34 3045 37 6.89349e+06 267783 618332. 2139.56 1.05 0.123916 0.105839 2293 21 1743 2114 172920 39213 3.36316 3.36316 -128.309 -3.36316 0 0 787024. 2723.27 0.16 0.04 0.0139289 0.0121508 138 60 32 32 62 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 4.88 0.03 7112 1 0.02 -1 -1 30524 -1 -1 28 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66016 32 32 408 320 1 264 92 17 17 289 -1 unnamed_device 1.25 1031 0.14 0.00 3.78125 -125.579 -3.78125 3.78125 0.48 0.000352137 0.000310074 0.0507169 0.0439372 36 3171 46 6.89349e+06 394628 648988. 2245.63 1.63 0.144312 0.123432 2320 24 2176 2688 214606 48653 4.22446 4.22446 -154.433 -4.22446 0 0 828058. 2865.25 0.16 0.05 0.0179239 0.0156745 178 49 64 32 64 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 3.72 0.03 7264 1 0.02 -1 -1 30236 -1 -1 27 29 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65448 29 32 371 297 1 231 88 17 17 289 -1 unnamed_device 1.23 1188 0.15 0.00 2.96685 -99.2813 -2.96685 2.96685 0.49 0.00033776 0.000297208 0.054466 0.0469196 30 2745 20 6.89349e+06 380534 556674. 1926.21 0.55 0.0976694 0.0838902 2155 18 1469 2008 134965 29507 2.94026 2.94026 -115.726 -2.94026 0 0 706193. 2443.58 0.14 0.04 0.0137726 0.0120794 158 54 56 29 58 29
+ fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 5.24 0.02 7196 1 0.03 -1 -1 30364 -1 -1 29 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66428 32 32 470 382 1 315 93 17 17 289 -1 unnamed_device 1.40 1330 0.20 0.00 4.11918 -135.21 -4.11918 4.11918 0.59 0.000401406 0.00035373 0.0750103 0.0651783 38 3507 40 6.89349e+06 408721 678818. 2348.85 1.61 0.203538 0.175929 2667 23 2552 2974 193703 46037 4.61549 4.61549 -164.506 -4.61549 0 0 902133. 3121.57 0.17 0.05 0.0190712 0.0167232 203 117 0 0 128 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 2.78 0.03 6904 1 0.02 -1 -1 30088 -1 -1 16 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64992 31 32 261 214 1 155 79 17 17 289 -1 unnamed_device 0.48 714 0.11 0.00 2.34777 -84.5304 -2.34777 2.34777 0.48 0.00026202 0.000227942 0.0424728 0.0367208 30 1982 23 6.89349e+06 225501 556674. 1926.21 0.48 0.0763491 0.0659204 1598 19 849 1377 82458 19841 2.63831 2.63831 -108.848 -2.63831 0 0 706193. 2443.58 0.14 0.03 0.0108714 0.0094959 104 -1 85 31 0 0
+ fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 4.79 0.02 7092 1 0.01 -1 -1 30000 -1 -1 28 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65988 32 32 419 339 1 274 92 17 17 289 -1 unnamed_device 1.66 1382 0.19 0.00 4.50338 -149.401 -4.50338 4.50338 0.48 0.000371126 0.000328233 0.064109 0.0555244 34 3617 45 6.89349e+06 394628 618332. 2139.56 1.12 0.15917 0.1364 2800 18 2130 2805 195368 46213 5.15034 5.15034 -175.889 -5.15034 0 0 787024. 2723.27 0.16 0.05 0.0156082 0.0138424 180 89 28 28 92 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 4.95 0.03 6960 1 0.01 -1 -1 29972 -1 -1 24 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65492 32 32 377 319 1 259 88 17 17 289 -1 unnamed_device 1.77 1305 0.13 0.00 3.83248 -135.135 -3.83248 3.83248 0.48 0.000339341 0.00029609 0.0463846 0.0399855 34 3448 27 6.89349e+06 338252 618332. 2139.56 1.23 0.123866 0.105913 2797 23 2807 3472 292658 63218 4.39939 4.39939 -166.585 -4.39939 0 0 787024. 2723.27 0.16 0.06 0.0166114 0.014564 161 93 0 0 96 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 6.27 0.03 7088 1 0.00 -1 -1 30172 -1 -1 26 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65268 32 32 402 317 1 253 90 17 17 289 -1 unnamed_device 1.43 1094 0.16 0.00 3.00785 -104.42 -3.00785 3.00785 0.48 0.000356407 0.000314102 0.0585518 0.0507803 36 3328 47 6.89349e+06 366440 648988. 2245.63 2.90 0.179776 0.154548 2247 21 1677 2361 208573 52778 3.03916 3.03916 -126.569 -3.03916 0 0 828058. 2865.25 0.16 0.05 0.0175875 0.0154335 172 59 61 32 64 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 4.70 0.02 7276 1 0.01 -1 -1 30432 -1 -1 32 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66808 32 32 501 383 1 322 96 17 17 289 -1 unnamed_device 1.37 1489 0.23 0.00 4.40399 -146.526 -4.40399 4.40399 0.48 0.00047693 0.000427311 0.0794146 0.0684967 38 3353 30 6.89349e+06 451003 678818. 2348.85 1.25 0.193845 0.167512 2766 20 2109 2535 168807 37286 4.8783 4.8783 -176.048 -4.8783 0 0 902133. 3121.57 0.17 0.05 0.0186702 0.016506 223 81 64 32 96 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 3.68 0.02 6844 1 0.01 -1 -1 29960 -1 -1 16 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65236 30 32 249 232 1 160 78 17 17 289 -1 unnamed_device 1.14 667 0.08 0.00 2.55272 -76.4495 -2.55272 2.55272 0.48 0.000233832 0.000202628 0.0328783 0.0280139 34 1742 20 6.89349e+06 225501 618332. 2139.56 0.79 0.0816224 0.0691289 1379 20 727 753 55732 13683 2.68996 2.68996 -90.6946 -2.68996 0 0 787024. 2723.27 0.16 0.02 0.0102567 0.008916 93 51 0 0 53 30
+ fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 3.53 0.02 7192 1 0.01 -1 -1 30060 -1 -1 21 30 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65464 30 32 299 247 1 181 83 17 17 289 -1 unnamed_device 0.95 957 0.13 0.00 3.47009 -117.109 -3.47009 3.47009 0.49 0.000293184 0.000258548 0.0495974 0.0430557 30 2084 49 6.89349e+06 295971 556674. 1926.21 0.56 0.0995609 0.0861516 1781 20 1089 1651 117361 25664 3.4135 3.4135 -134.948 -3.4135 0 0 706193. 2443.58 0.20 0.05 0.0209695 0.0184099 124 29 60 30 30 30
+ fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 6.63 0.03 6996 1 0.01 -1 -1 29932 -1 -1 19 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65620 32 32 315 257 1 199 83 17 17 289 -1 unnamed_device 1.97 826 0.16 0.00 3.42319 -115.141 -3.42319 3.42319 0.58 0.000435188 0.000377279 0.0586795 0.0505743 38 2581 48 6.89349e+06 267783 678818. 2348.85 2.54 0.16666 0.143468 1805 20 1647 2790 189078 44767 3.6814 3.6814 -138.978 -3.6814 0 0 902133. 3121.57 0.17 0.04 0.0134421 0.0117775 129 31 64 32 32 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 3.21 0.02 6876 1 0.01 -1 -1 30120 -1 -1 24 25 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65360 25 32 259 222 1 162 81 17 17 289 -1 unnamed_device 0.97 700 0.11 0.00 3.0462 -83.3765 -3.0462 3.0462 0.48 0.000247529 0.000215619 0.0396451 0.0338382 28 1816 22 6.89349e+06 338252 531479. 1839.03 0.47 0.0715424 0.0611536 1580 21 1119 1577 108866 26119 3.18081 3.18081 -101.91 -3.18081 0 0 648988. 2245.63 0.14 0.03 0.0116866 0.0101482 107 19 50 25 25 25
+ fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 5.67 0.02 7140 1 0.01 -1 -1 30244 -1 -1 28 32 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66220 32 32 433 347 1 288 92 17 17 289 -1 unnamed_device 2.18 1454 0.19 0.00 3.70605 -126.1 -3.70605 3.70605 0.48 0.000377549 0.000334299 0.0634961 0.0554605 36 3565 30 6.89349e+06 394628 648988. 2245.63 1.51 0.154794 0.133707 3001 20 2250 3270 229559 51946 4.01296 4.01296 -154.548 -4.01296 0 0 828058. 2865.25 0.16 0.05 0.0166733 0.0146913 190 84 32 32 94 32
+ fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 4.57 0.02 7260 1 0.01 -1 -1 30164 -1 -1 28 31 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65800 31 32 423 341 1 274 91 17 17 289 -1 unnamed_device 1.51 1448 0.18 0.00 3.84049 -131.027 -3.84049 3.84049 0.48 0.000372702 0.000330169 0.0632396 0.0548932 34 3547 25 6.89349e+06 394628 618332. 2139.56 1.08 0.145722 0.125588 2959 21 2288 3207 237783 53951 4.34919 4.34919 -158.882 -4.34919 0 0 787024. 2723.27 0.16 0.05 0.0173253 0.0152015 182 88 29 29 93 31
diff --git a/vtr_flow/tasks/arithmetic_tasks/open_cores/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/open_cores/config/config.txt
similarity index 73%
rename from vtr_flow/tasks/arithmetic_tasks/open_cores/config/config.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/open_cores/config/config.txt
index b5a0a0e8afc..7ee3239e85b 100644
--- a/vtr_flow/tasks/arithmetic_tasks/open_cores/config/config.txt
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/open_cores/config/config.txt
@@ -11,21 +11,25 @@ archs_dir=arch/COFFE_22nm
# Add circuits to list to sweep
+
circuit_list_add=Md5Core.v
-circuit_list_add=rc4.v
-circuit_list_add=cordic.v
-circuit_list_add=pipelined_fft_64.v
+circuit_list_add=cordic.v
+#Odin issue, Issue#1738
+#circuit_list_add=pipelined_fft_64.v
# Add architectures to list to sweep
arch_list_add=k6_N8_gate_boost_0.2V_22nm.xml
-arch_list_add=k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml
-arch_list_add=k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml
+#arch_list_add=k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml
+#arch_list_add=k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml
arch_list_add=k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml
arch_list_add=k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml
# Parse info and how to parse
parse_file=vpr_chain.txt
+# How to parse QoR info
+qor_parse_file=qor_standard.txt
+
# Pass requirements
pass_requirements_file=pass_requirements_chain.txt
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
new file mode 100644
index 00000000000..e30318bd686
--- /dev/null
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/open_cores/config/golden_results.txt
@@ -0,0 +1,7 @@
+ 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_N8_gate_boost_0.2V_22nm.xml Md5Core.v common 561.02 12.61 123256 27 15.63 -1 -1 138616 -1 -1 5890 641 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 1078456 641 128 52347 52475 1 24691 6659 91 91 8281 clb auto 183.27 311456 97.61 0.73 12.9118 -34123.7 -12.9118 12.9118 60.54 0.0612485 0.0531831 9.89888 7.98251 68 446733 33 2.5209e+08 7.10084e+07 3.55803e+07 4296.62 115.29 29.0224 24.2581 413889 15 107844 232243 17228674 3275078 13.5733 13.5733 -36053.1 -13.5733 0 0 4.43124e+07 5351.09 17.45 7.01 3.10422 2.73974 42410 15098 -1 -1 -1 -1
+ k6_N8_gate_boost_0.2V_22nm.xml cordic.v common 2.63 0.05 9232 11 0.22 -1 -1 33360 -1 -1 46 54 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 68536 54 51 469 520 1 312 151 10 10 100 clb auto 0.10 2313 0.18 0.00 4.9488 -207.159 -4.9488 4.9488 0.12 0.000597627 0.000481519 0.0596217 0.0487068 50 4972 26 1.91864e+06 554530 264954. 2649.54 0.98 0.208444 0.176477 4461 18 1872 8041 459971 107312 5.4296 5.4296 -231.493 -5.4296 0 0 317040. 3170.40 0.06 0.09 0.0309584 0.0277996 359 359 -1 -1 -1 -1
+ k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml Md5Core.v common 607.06 14.22 110532 1 3.85 -1 -1 168832 -1 -1 5784 641 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 1157952 641 128 63843 53443 1 24861 6553 90 90 8100 clb auto 25.54 316995 276.94 1.44 6.22442 -24286.9 -6.22442 6.22442 62.02 0.0532843 0.045816 10.7799 8.54605 74 434562 33 2.53171e+08 7.26417e+07 3.72985e+07 4604.75 143.62 33.4074 27.4978 404856 16 94493 167001 17536749 3023582 5.98868 5.98868 -24820.3 -5.98868 0 0 4.63728e+07 5725.03 21.12 6.61 2.89675 2.52044 43404 3440 12624 36 0 0
+ k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml cordic.v common 3.94 0.03 9476 4 0.12 -1 -1 32748 -1 -1 42 54 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 68448 54 51 517 516 1 301 147 10 10 100 clb auto 1.26 1956 0.23 0.00 3.71205 -184.501 -3.71205 3.71205 0.12 0.000574395 0.000498369 0.0721433 0.060153 46 4447 39 1.94278e+06 527436 244280. 2442.80 1.22 0.242678 0.20723 3739 19 1588 6261 340386 80664 3.89654 3.89654 -203.39 -3.89654 0 0 298105. 2981.05 0.05 0.08 0.0346354 0.0316723 315 291 60 18 54 18
+ k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml Md5Core.v common 625.14 14.11 110688 1 3.82 -1 -1 168784 -1 -1 5776 641 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 1162892 641 128 63843 53443 1 24860 6545 90 90 8100 clb auto 40.93 291391 280.06 1.61 5.37451 -23306.6 -5.37451 5.37451 60.87 0.054596 0.0465628 10.929 8.59823 74 411779 35 2.53845e+08 7.32344e+07 3.72985e+07 4604.75 142.06 34.1954 28.0112 382561 32 106569 186826 20333947 3932009 4.92089 4.92089 -23833.3 -4.92089 0 0 4.63728e+07 5725.03 21.20 9.48 4.82742 4.16577 43450 3440 12624 36 0 0
+ k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml cordic.v common 3.54 0.04 9428 4 0.12 -1 -1 32784 -1 -1 41 54 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 68496 54 51 517 516 1 305 146 10 10 100 clb auto 0.90 2002 0.23 0.00 3.55653 -181.169 -3.55653 3.55653 0.13 0.000587628 0.000480292 0.0682492 0.0566937 46 4376 40 1.94854e+06 519798 244280. 2442.80 1.13 0.228573 0.194694 3684 16 1518 5647 297195 70804 3.76303 3.76303 -198.452 -3.76303 0 0 298105. 2981.05 0.06 0.09 0.0400905 0.0367294 314 291 60 18 54 18
diff --git a/vtr_flow/tasks/arithmetic_tasks/open_cores_frac/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/open_cores_frac/config/config.txt
similarity index 87%
rename from vtr_flow/tasks/arithmetic_tasks/open_cores_frac/config/config.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/open_cores_frac/config/config.txt
index 1eca685c6ea..78eae31d19e 100644
--- a/vtr_flow/tasks/arithmetic_tasks/open_cores_frac/config/config.txt
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/open_cores_frac/config/config.txt
@@ -12,9 +12,9 @@ archs_dir=arch/timing/fraclut_carrychain
# Add circuits to list to sweep
circuit_list_add=Md5Core.v
-circuit_list_add=rc4.v
circuit_list_add=cordic.v
-circuit_list_add=pipelined_fft_64.v
+#Odin issue, Issue#1738
+#circuit_list_add=pipelined_fft_64.v
# Add architectures to list to sweep
arch_list_add=k6_frac_2ripple_N8_22nm.xml
@@ -26,6 +26,9 @@ arch_list_add=k6_frac_uripple_N8_22nm.xml
# Parse info and how to parse
parse_file=vpr_chain.txt
+# How to parse QoR info
+qor_parse_file=qor_standard.txt
+
# Pass requirements
pass_requirements_file=pass_requirements_chain.txt
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/open_cores_frac/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/open_cores_frac/config/golden_results.txt
new file mode 100644
index 00000000000..9e6d5ca835a
--- /dev/null
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/open_cores_frac/config/golden_results.txt
@@ -0,0 +1,11 @@
+ 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_2ripple_N8_22nm.xml Md5Core.v common 1401.09 12.82 110636 1 3.92 -1 -1 168768 -1 -1 3149 641 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 832960 641 128 63843 53443 1 24210 3918 67 67 4489 clb auto 1024.51 257678 97.94 0.67 7.03324 -23933.4 -7.03324 7.03324 34.57 0.0518919 0.0436921 9.8926 7.92152 100 358371 35 1.40629e+08 4.55847e+07 2.79005e+07 6215.31 172.08 33.0484 27.0956 322840 17 109932 151911 15705252 2647903 6.5711 6.5711 -24866.8 -6.5711 0 0 3.55909e+07 7928.48 13.35 6.28 3.07102 2.68229 23365 3440 12624 36 0 0
+ k6_frac_2ripple_N8_22nm.xml cordic.v common 6.67 0.05 9448 4 0.12 -1 -1 32808 -1 -1 30 54 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66408 54 51 517 516 1 317 135 9 9 81 clb auto 3.35 1786 0.18 0.00 3.60225 -193.015 -3.60225 3.60225 0.09 0.000555036 0.000479567 0.0645623 0.0537161 58 4054 30 1.45065e+06 434271 237595. 2933.27 1.94 0.302544 0.256863 3564 19 1968 6980 420492 96927 3.69482 3.69482 -209.853 -3.69482 0 0 298762. 3688.42 0.05 0.09 0.0320876 0.029091 223 291 60 18 54 18
+ k6_frac_2uripple_N8_22nm.xml Md5Core.v common 1150.69 13.45 110600 1 5.01 -1 -1 168716 -1 -1 3156 641 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 824796 641 128 63843 53443 1 24164 3925 67 67 4489 clb auto 767.73 248943 112.74 0.79 6.4024 -23443.5 -6.4024 6.4024 37.70 0.0547589 0.0469342 10.2701 8.18759 98 347080 49 1.41393e+08 4.64435e+07 2.75098e+07 6128.27 157.99 35.5373 29.0405 310960 25 102684 143997 15311899 2541405 6.50111 6.50111 -24262.2 -6.50111 0 0 3.50293e+07 7803.36 13.67 7.25 4.05496 3.49547 23381 3440 12624 36 0 0
+ k6_frac_2uripple_N8_22nm.xml cordic.v common 2.90 0.05 9440 4 0.17 -1 -1 32812 -1 -1 33 54 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66568 54 51 517 516 1 311 138 9 9 81 clb auto 0.28 1793 0.23 0.00 3.4018 -184.903 -3.4018 3.4018 0.11 0.000875609 0.000744989 0.078312 0.0646235 62 4103 25 1.45905e+06 485618 249781. 3083.72 1.07 0.287054 0.246727 3296 20 1754 6505 345120 79736 3.6993 3.6993 -207.149 -3.6993 0 0 310465. 3832.90 0.05 0.09 0.0359982 0.0326228 229 291 60 18 54 18
+ k6_frac_N8_22nm.xml Md5Core.v common 1122.00 12.85 123268 27 16.36 -1 -1 138760 -1 -1 3468 641 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 871668 641 128 52347 52475 1 23476 4237 70 70 4900 clb auto 815.87 271607 57.03 0.41 12.5111 -34057.6 -12.5111 12.5111 36.04 0.0562456 0.0478112 9.56146 7.4156 88 402162 32 1.54829e+08 4.67209e+07 2.76661e+07 5646.14 126.54 35.023 29.0631 371959 17 112389 234005 19871258 3560692 13.6319 13.6319 -36742.1 -13.6319 0 0 3.43899e+07 7018.34 11.62 8.01 3.61036 3.1926 24733 15098 -1 -1 -1 -1
+ k6_frac_N8_22nm.xml cordic.v common 2.46 0.05 9324 11 0.20 -1 -1 33308 -1 -1 34 54 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 68104 54 51 469 520 1 316 139 9 9 81 clb auto 0.18 2134 0.19 0.00 5.44943 -213.884 -5.44943 5.44943 0.10 0.00056618 0.00048761 0.0639681 0.0524048 66 4356 21 1.41552e+06 458048 266717. 3292.80 0.80 0.209942 0.178962 3913 16 1744 7138 398320 89544 5.57473 5.57473 -231.21 -5.57473 0 0 334415. 4128.58 0.05 0.08 0.0298234 0.0270818 265 359 -1 -1 -1 -1
+ k6_frac_ripple_N8_22nm.xml Md5Core.v common 1224.28 12.95 110696 1 4.27 -1 -1 168748 -1 -1 3940 641 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 993924 641 128 63843 53443 1 22919 4709 75 75 5625 clb auto 757.70 270606 220.85 0.98 6.32261 -22561.4 -6.32261 6.32261 48.97 0.0601633 0.0455592 11.3615 8.64267 78 375908 50 1.79437e+08 5.50544e+07 2.85911e+07 5082.87 118.04 36.3026 29.3732 349542 19 107390 181645 17899008 3256227 5.48606 5.48606 -22688.5 -5.48606 0 0 3.58571e+07 6374.60 14.98 6.93 3.2123 2.76456 29971 3440 12624 36 0 0
+ k6_frac_ripple_N8_22nm.xml cordic.v common 4.49 0.05 9536 4 0.15 -1 -1 32768 -1 -1 32 54 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66820 54 51 517 516 1 308 137 9 9 81 clb auto 2.08 1828 0.24 0.00 3.66598 -188.823 -3.66598 3.66598 0.10 0.000566407 0.000494002 0.0786461 0.0659278 56 4061 38 1.43308e+06 447163 231774. 2861.41 0.96 0.289468 0.248626 3481 17 1649 5644 322384 79351 3.82685 3.82685 -199.294 -3.82685 0 0 286113. 3532.26 0.04 0.07 0.0281784 0.0255084 235 291 60 18 54 18
+ k6_frac_uripple_N8_22nm.xml Md5Core.v common 990.97 12.86 110588 1 4.17 -1 -1 168756 -1 -1 4048 641 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 1002212 641 128 63843 53443 1 24269 4817 76 76 5776 clb auto 479.88 296023 224.50 1.15 6.5534 -24047.2 -6.5534 6.5534 48.44 0.0571196 0.0490958 11.4279 8.97106 70 397234 36 1.87279e+08 5.70491e+07 2.68464e+07 4647.92 162.79 29.0834 23.4987 360992 20 98345 139760 15050421 2633583 6.0668 6.0668 -23950.1 -6.0668 0 0 3.38185e+07 5855.01 13.08 6.67 3.49072 3.01266 30740 3440 12624 36 0 0
+ k6_frac_uripple_N8_22nm.xml cordic.v common 2.70 0.04 9444 4 0.13 -1 -1 32740 -1 -1 33 54 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 68360 54 51 517 516 1 307 138 9 9 81 clb auto 0.53 1849 0.23 0.00 3.77313 -188.652 -3.77313 3.77313 0.10 0.00105296 0.000866028 0.0725099 0.0598183 58 4197 23 1.43728e+06 465097 237595. 2933.27 0.78 0.213566 0.180988 3534 18 1928 7033 401761 94430 3.66891 3.66891 -202.048 -3.66891 0 0 298762. 3688.42 0.05 0.09 0.0294513 0.0264488 250 291 60 18 54 18
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/power_extended_arch_list/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/power_extended_arch_list/config/config.txt
new file mode 100644
index 00000000000..a08c2cb054d
--- /dev/null
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/power_extended_arch_list/config/config.txt
@@ -0,0 +1,43 @@
+##############################################
+# Configuration file for running experiments
+##############################################
+
+# Power
+script_params=-power -track_memory_usage
+cmos_tech_behavior=PTM_45nm/45nm.xml
+
+# Path to directory of circuits to use
+circuits_dir=benchmarks/verilog
+
+# Path to directory of architectures to use
+archs_dir=arch/power
+
+# Add circuits to list to sweep
+circuit_list_add=ch_intrinsics.v
+circuit_list_add=diffeq1.v
+circuit_list_add=LU8PEEng.v
+
+# Add architectures to list to sweep
+arch_list_add=k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml
+arch_list_add=k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml
+
+arch_list_add=k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml
+arch_list_add=k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml
+
+arch_list_add=k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml
+arch_list_add=k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml
+
+arch_list_add=k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml
+arch_list_add=k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml
+
+arch_list_add=k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml
+arch_list_add=k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml
+
+# Parse info and how to parse
+parse_file=vpr_power.txt
+
+# How to parse QoR info
+qor_parse_file=qor_standard.txt
+
+# Pass requirements
+pass_requirements_file=pass_requirements_power.txt
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
new file mode 100644
index 00000000000..4d0d283ad55
--- /dev/null
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/power_extended_arch_list/config/golden_results.txt
@@ -0,0 +1,31 @@
+ 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 total_power routing_power_perc clock_power_perc tile_power_perc
+ k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 2.63 0.05 9356 3 0.20 -1 -1 36268 -1 -1 68 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65424 99 130 363 493 1 256 298 12 12 144 clb auto 0.06 706 0.26 0.00 1.86328 -198.021 -1.86328 1.86328 0.18 0.000419318 0.000367215 0.0724357 0.0627192 46 1510 15 5.66058e+06 4.21279e+06 378970. 2631.74 0.48 0.166593 0.147535 1419 13 512 678 54408 17907 2.4649 2.4649 -230.915 -2.4649 0 0 486261. 3376.82 0.08 0.03 0.0156866 0.0143839 0.00814 0.2379 0.08094 0.6811
+ k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq1.v common 10.01 0.04 9184 15 0.39 -1 -1 34648 -1 -1 39 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 79344 162 96 999 932 1 698 302 16 16 256 mult_36 auto 0.27 5215 0.70 0.01 20.0279 -1731.76 -20.0279 20.0279 0.48 0.00260174 0.00237238 0.31263 0.27961 50 11710 30 1.21132e+07 4.08187e+06 780512. 3048.87 4.57 0.975429 0.889688 9689 15 2920 5783 1711731 425773 22.9164 22.9164 -1951.82 -22.9164 0 0 1.00276e+06 3917.05 0.20 0.41 0.105751 0.0994554 0.007591 0.3632 0.01662 0.6202
+ k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml LU8PEEng.v common 770.85 19.51 227532 129 250.30 -1 -1 100896 -1 -1 2016 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 591028 114 102 29578 29304 1 16033 2284 54 54 2916 clb auto 22.56 233317 42.45 0.26 70.0908 -60679 -70.0908 70.0908 21.76 0.0532943 0.0452555 8.68058 6.43939 104 338815 35 1.70873e+08 1.35934e+08 1.97479e+07 6772.27 295.63 31.0969 24.353 315352 20 64444 251879 56108125 13858139 81.2538 81.2538 -73871.7 -81.2538 -12.6553 -0.198548 2.50445e+07 8588.64 7.99 19.40 4.16411 3.45736 0.1065 0.4335 0.01057 0.5559
+ k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 2.71 0.05 9288 3 0.18 -1 -1 36216 -1 -1 68 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65584 99 130 363 493 1 256 298 12 12 144 clb auto 0.06 706 0.26 0.00 1.86328 -198.021 -1.86328 1.86328 0.18 0.000466718 0.000410699 0.0717229 0.0619809 46 1519 11 5.66058e+06 4.21279e+06 378970. 2631.74 0.48 0.162927 0.144131 1428 12 511 676 52183 16991 2.4649 2.4649 -231.983 -2.4649 0 0 486261. 3376.82 0.09 0.03 0.0176827 0.0161502 0.009182 0.2127 0.07176 0.7156
+ k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml diffeq1.v common 9.03 0.04 9112 15 0.33 -1 -1 34684 -1 -1 39 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 69860 162 96 999 932 1 698 302 16 16 256 mult_36 auto 0.22 5186 0.51 0.01 19.8574 -1728.41 -19.8574 19.8574 0.38 0.00154168 0.00141296 0.215256 0.192797 46 13257 38 1.21132e+07 4.08187e+06 727248. 2840.81 4.45 0.606993 0.549693 10060 20 3501 7198 2216764 544500 22.9937 22.9937 -2071.29 -22.9937 0 0 934704. 3651.19 0.15 0.39 0.0950537 0.0888561 0.007803 0.3455 0.01615 0.6384
+ k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml LU8PEEng.v common 717.50 19.68 227680 129 254.83 -1 -1 100924 -1 -1 1931 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 572592 114 102 29578 29304 1 15666 2199 53 53 2809 clb auto 40.39 226766 39.36 0.24 71.1556 -52046.2 -71.1556 71.1556 20.21 0.0522329 0.0447319 8.53688 6.31506 104 330947 39 1.63647e+08 1.31353e+08 1.89544e+07 6747.73 232.19 30.7304 24.0418 307540 19 59870 236394 44326539 9442569 80.603 80.603 -65443.5 -80.603 -14.0123 -0.199722 2.40419e+07 8558.89 6.43 15.19 4.40327 3.63039 0.1059 0.4217 0.0102 0.5681
+ k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 2.56 0.04 9328 3 0.19 -1 -1 36196 -1 -1 67 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65728 99 130 363 493 1 260 297 12 12 144 clb auto 0.06 675 0.26 0.00 2.00877 -201.35 -2.00877 2.00877 0.19 0.000429607 0.000375831 0.0739519 0.0640826 38 1473 10 5.66058e+06 4.1589e+06 334530. 2323.13 0.43 0.164822 0.145753 1335 10 553 758 61612 21978 2.6329 2.6329 -244.597 -2.6329 0 0 424691. 2949.24 0.07 0.03 0.0137752 0.012696 0.007549 0.2162 0.07456 0.7092
+ k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 9.62 0.03 9156 15 0.34 -1 -1 34716 -1 -1 39 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 75852 162 96 999 932 1 692 302 16 16 256 mult_36 auto 0.22 5373 0.53 0.01 19.7363 -1627.73 -19.7363 19.7363 0.40 0.00155347 0.00141682 0.226003 0.202967 46 12874 47 1.21132e+07 4.08187e+06 761464. 2974.47 4.95 0.632455 0.574658 10002 17 3162 6591 1782591 439893 22.2465 22.2465 -1848.32 -22.2465 0 0 979054. 3824.43 0.17 0.32 0.0847264 0.0767099 0.00796 0.3487 0.01638 0.6349
+ k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1005.47 22.30 227636 129 247.73 -1 -1 100984 -1 -1 1868 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 584288 114 102 29578 29304 1 16000 2136 53 53 2809 clb auto 213.58 230748 46.06 0.28 70.1304 -57189.4 -70.1304 70.1304 22.07 0.0555655 0.0472734 9.22271 6.71901 104 329568 37 1.63647e+08 1.27957e+08 1.98011e+07 7049.16 340.79 31.6324 24.5131 309156 21 56547 227343 44578169 9731182 79.4515 79.4515 -72626.4 -79.4515 -15.5633 -0.195443 2.50370e+07 8913.15 7.45 14.67 4.18973 3.47678 0.1109 0.4141 0.01029 0.5756
+ k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 2.64 0.05 9332 3 0.20 -1 -1 36228 -1 -1 67 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65492 99 130 363 493 1 260 297 12 12 144 clb auto 0.07 675 0.27 0.00 2.00877 -201.35 -2.00877 2.00877 0.19 0.000476807 0.0003984 0.0733394 0.063296 38 1476 10 5.66058e+06 4.1589e+06 334530. 2323.13 0.44 0.166088 0.146695 1339 10 531 709 60504 21675 2.6329 2.6329 -240.581 -2.6329 0 0 424691. 2949.24 0.07 0.03 0.013944 0.0128527 0.008522 0.1913 0.06605 0.7426
+ k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 8.91 0.04 9112 15 0.29 -1 -1 34592 -1 -1 39 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 71152 162 96 999 932 1 692 302 16 16 256 mult_36 auto 0.22 5373 0.60 0.01 19.7363 -1627.54 -19.7363 19.7363 0.41 0.00168518 0.00154224 0.256496 0.22973 48 12242 28 1.21132e+07 4.08187e+06 791884. 3093.30 4.07 0.726002 0.659439 9857 17 3022 6181 1681171 422674 22.2387 22.2387 -1852.74 -22.2387 0 0 1.01413e+06 3961.44 0.18 0.31 0.0846672 0.0769713 0.008288 0.3389 0.01598 0.6451
+ k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 1036.32 20.75 227652 129 286.51 -1 -1 100980 -1 -1 1784 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 590264 114 102 29578 29304 1 15505 2052 51 51 2601 clb auto 276.48 222958 39.11 0.25 69.0898 -53657.1 -69.0898 69.0898 20.00 0.0538045 0.0456734 8.7756 6.38334 102 321631 32 1.52527e+08 1.2343e+08 1.80757e+07 6949.52 279.70 29.6095 23.0218 296261 16 56431 224378 40764853 8622281 78.6777 78.6777 -67908.8 -78.6777 -30.3109 -0.224738 2.25881e+07 8684.41 7.47 15.61 4.30891 3.60621 0.1073 0.3906 0.009672 0.5997
+ k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 2.67 0.04 9344 3 0.20 -1 -1 36192 -1 -1 67 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 70552 99 130 363 493 1 270 297 12 12 144 clb auto 0.06 673 0.28 0.00 2.164 -202.469 -2.164 2.164 0.20 0.000429609 0.000373981 0.0772855 0.0666319 46 1405 9 5.66058e+06 4.1589e+06 410918. 2853.60 0.49 0.16782 0.147718 1230 9 498 669 35676 12294 2.57245 2.57245 -231.014 -2.57245 0 0 527087. 3660.32 0.08 0.02 0.0129544 0.0119547 0.007808 0.2158 0.08187 0.7024
+ k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 7.95 0.04 9108 15 0.32 -1 -1 34748 -1 -1 38 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 78092 162 96 999 932 1 693 301 16 16 256 mult_36 auto 0.22 5507 0.54 0.01 19.5255 -1806.49 -19.5255 19.5255 0.41 0.0015923 0.00145356 0.233525 0.20938 46 12593 24 1.21132e+07 4.02797e+06 791147. 3090.42 3.29 0.569869 0.515853 10069 17 3091 6232 1654128 410178 22.1276 22.1276 -2083.68 -22.1276 0 0 1.01637e+06 3970.19 0.17 0.31 0.0855113 0.077351 0.008091 0.351 0.01632 0.6327
+ k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1117.59 21.51 227668 129 251.86 -1 -1 101024 -1 -1 1786 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 587424 114 102 29578 29304 1 15914 2054 51 51 2601 clb auto 355.36 226905 38.12 0.25 71.5324 -58921.3 -71.5324 71.5324 22.24 0.0553968 0.0471899 8.69671 6.28012 104 318263 24 1.52527e+08 1.23538e+08 1.90821e+07 7336.47 312.77 29.607 22.9536 300595 17 54490 217005 42035673 9339309 81.2082 81.2082 -74009.6 -81.2082 -15.0344 -0.293253 2.40571e+07 9249.19 7.34 13.86 3.81274 3.22624 0.1125 0.3936 0.009782 0.5966
+ k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 2.70 0.05 9320 3 0.20 -1 -1 36172 -1 -1 67 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 70312 99 130 363 493 1 270 297 12 12 144 clb auto 0.06 673 0.27 0.00 2.164 -202.469 -2.164 2.164 0.19 0.000429375 0.000374685 0.0757516 0.0655182 46 1402 10 5.66058e+06 4.1589e+06 410918. 2853.60 0.50 0.167474 0.148098 1225 9 503 682 36059 12370 2.57245 2.57245 -227.411 -2.57245 0 0 527087. 3660.32 0.08 0.02 0.0131291 0.0121195 0.008795 0.1903 0.07268 0.7371
+ k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 9.09 0.04 9192 15 0.33 -1 -1 34600 -1 -1 38 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 70516 162 96 999 932 1 695 301 16 16 256 mult_36 auto 0.23 5404 0.54 0.01 19.7791 -1799.73 -19.7791 19.7791 0.42 0.00157723 0.00143861 0.230972 0.206887 46 12385 45 1.21132e+07 4.02797e+06 791147. 3090.42 4.09 0.749238 0.683974 10361 17 3092 6301 2032575 522031 22.4336 22.4336 -2084.86 -22.4336 0 0 1.01637e+06 3970.19 0.17 0.36 0.0817652 0.0764909 0.008351 0.3413 0.01562 0.6431
+ k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 1142.66 19.82 227532 129 251.72 -1 -1 100920 -1 -1 1709 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 592028 114 102 29578 29304 1 15150 1977 50 50 2500 clb memory auto 382.84 214534 39.12 0.23 69.5472 -54222.9 -69.5472 69.5472 21.93 0.053487 0.0454083 8.83218 6.45319 102 310190 37 1.47946e+08 1.19388e+08 1.79933e+07 7197.34 313.68 29.3521 22.8007 282763 17 51275 209171 45988964 10854403 82.2802 82.2802 -69856.5 -82.2802 -19.7249 -0.293253 2.24258e+07 8970.33 6.24 16.32 3.99077 3.4219 0.1094 0.3732 0.009515 0.6173
+ k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 2.66 0.04 9320 3 0.20 -1 -1 36320 -1 -1 67 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65536 99 130 363 493 1 260 297 12 12 144 clb auto 0.06 657 0.26 0.00 2.08915 -200.289 -2.08915 2.08915 0.19 0.00042554 0.000366897 0.0721819 0.0623749 46 1472 9 5.66058e+06 4.1589e+06 378970. 2631.74 0.46 0.161756 0.142909 1389 8 536 729 66079 22075 2.65239 2.65239 -230.864 -2.65239 0 0 486261. 3376.82 0.08 0.03 0.0130198 0.0120066 0.007639 0.2313 0.08022 0.6885
+ k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 9.27 0.04 9168 15 0.33 -1 -1 34576 -1 -1 39 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 79780 162 96 999 932 1 691 302 16 16 256 mult_36 auto 0.21 5251 0.54 0.01 19.8123 -1650.45 -19.8123 19.8123 0.38 0.00159124 0.0014454 0.231494 0.207048 50 12536 46 1.21132e+07 4.08187e+06 780512. 3048.87 4.52 0.759037 0.690855 10014 18 3264 6632 2267312 568535 22.6426 22.6426 -1922.44 -22.6426 0 0 1.00276e+06 3917.05 0.17 0.38 0.0839461 0.0782975 0.007783 0.3587 0.01639 0.6249
+ k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1080.47 20.70 227600 129 252.19 -1 -1 100912 -1 -1 1961 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 573764 114 102 29578 29304 1 16270 2229 54 54 2916 clb auto 144.28 232335 44.67 0.29 70.4195 -57155 -70.4195 70.4195 21.46 0.0585925 0.0507181 9.14048 6.62453 106 346247 49 1.70873e+08 1.3297e+08 2.00350e+07 6870.71 473.54 31.2579 24.2336 312179 20 61991 239955 44391205 9287149 80.6584 80.6584 -71222.5 -80.6584 -27.6087 -0.29436 2.53677e+07 8699.49 7.39 13.42 3.96194 3.33305 0.1084 0.4304 0.01069 0.5589
+ k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 2.64 0.04 9296 3 0.19 -1 -1 36248 -1 -1 67 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65748 99 130 363 493 1 260 297 12 12 144 clb auto 0.06 657 0.27 0.00 2.08915 -200.289 -2.08915 2.08915 0.18 0.00042992 0.000375917 0.0728606 0.0630416 46 1482 12 5.66058e+06 4.1589e+06 378970. 2631.74 0.47 0.166281 0.147076 1398 10 523 698 65113 21840 2.65239 2.65239 -232.095 -2.65239 0 0 486261. 3376.82 0.07 0.03 0.0138592 0.0127383 0.008628 0.2081 0.07103 0.7208
+ k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 10.01 0.04 9156 15 0.29 -1 -1 34664 -1 -1 39 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 69968 162 96 999 932 1 691 302 16 16 256 mult_36 auto 0.21 5251 0.58 0.01 19.8123 -1650.45 -19.8123 19.8123 0.38 0.00159268 0.00144558 0.250374 0.223986 50 12858 46 1.21132e+07 4.08187e+06 780512. 3048.87 5.34 0.782082 0.709604 10140 17 3290 6677 2292108 576545 22.6424 22.6424 -1935.34 -22.6424 0 0 1.00276e+06 3917.05 0.17 0.39 0.0816575 0.076216 0.008079 0.347 0.01579 0.6372
+ k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 866.83 19.21 227604 129 250.95 -1 -1 101016 -1 -1 1877 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 579976 114 102 29578 29304 1 15659 2145 53 53 2809 clb auto 169.89 221743 42.86 0.28 71.3576 -57618.6 -71.3576 71.3576 21.03 0.0574484 0.0488587 9.1366 6.63697 102 325437 31 1.63647e+08 1.28443e+08 1.86097e+07 6625.03 244.34 31.1239 24.0672 300817 19 61105 238533 36092549 7289219 81.9871 81.9871 -70436.7 -81.9871 -17.3169 -0.29436 2.33362e+07 8307.64 6.87 13.06 4.13199 3.43182 0.1052 0.4073 0.01001 0.5827
+ k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 2.60 0.05 9320 3 0.20 -1 -1 36328 -1 -1 67 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65580 99 130 363 493 1 270 297 12 12 144 clb auto 0.06 718 0.26 0.00 2.05624 -200.755 -2.05624 2.05624 0.18 0.000417629 0.000365052 0.0716246 0.0619868 48 1561 9 5.66058e+06 4.1589e+06 394078. 2736.65 0.47 0.161618 0.143018 1438 11 543 707 50455 15973 2.664 2.664 -236.599 -2.664 0 0 503207. 3494.49 0.08 0.03 0.0145078 0.0133671 0.007874 0.2493 0.0787 0.672
+ k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 10.46 0.03 9168 15 0.32 -1 -1 34728 -1 -1 38 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 76044 162 96 999 932 1 689 301 16 16 256 mult_36 auto 0.30 5405 0.59 0.01 19.7682 -1693.3 -19.7682 19.7682 0.39 0.00172524 0.00157701 0.253983 0.227352 48 12726 37 1.21132e+07 4.02797e+06 756778. 2956.16 5.70 0.748289 0.678298 10220 19 3442 6774 2124797 514940 22.553 22.553 -2007.56 -22.553 0 0 968034. 3781.38 0.16 0.37 0.0897037 0.0834903 0.007899 0.3544 0.01649 0.6291
+ k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 921.14 19.11 227608 129 252.50 -1 -1 100928 -1 -1 1924 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 580360 114 102 29578 29304 1 16180 2192 53 53 2809 clb auto 159.69 224489 44.48 0.28 71.2744 -56000.3 -71.2744 71.2744 20.60 0.0549514 0.0469312 9.13918 6.65698 100 332884 44 1.63647e+08 1.30976e+08 1.82848e+07 6509.36 313.70 33.5744 26.0789 304020 19 62324 243877 41459064 9020565 81.2603 81.2603 -70341.9 -81.2603 -14.1037 -0.292146 2.30694e+07 8212.69 6.70 14.55 4.23321 3.56935 0.105 0.4083 0.01022 0.5815
+ k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 2.78 0.05 9336 3 0.27 -1 -1 36264 -1 -1 67 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65468 99 130 363 493 1 270 297 12 12 144 clb auto 0.06 718 0.26 0.00 2.05624 -200.755 -2.05624 2.05624 0.18 0.000420908 0.000368174 0.0730985 0.0633299 48 1574 8 5.66058e+06 4.1589e+06 394078. 2736.65 0.46 0.161759 0.143247 1431 8 538 704 49349 15661 2.664 2.664 -232.19 -2.664 0 0 503207. 3494.49 0.08 0.02 0.0121469 0.0112471 0.008829 0.222 0.07019 0.7078
+ k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 9.37 0.04 9116 15 0.44 -1 -1 34692 -1 -1 38 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 70176 162 96 999 932 1 689 301 16 16 256 mult_36 auto 0.22 5405 0.51 0.01 19.7682 -1693.3 -19.7682 19.7682 0.39 0.00160732 0.0014656 0.218296 0.195461 46 14514 50 1.21132e+07 4.02797e+06 727248. 2840.81 4.57 0.547105 0.496063 10716 20 3769 7590 2200078 535329 22.5606 22.5606 -1929.83 -22.5606 0 0 934704. 3651.19 0.17 0.41 0.0977464 0.0910634 0.00818 0.3412 0.01568 0.6432
+ k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 876.67 19.17 227592 129 250.37 -1 -1 100872 -1 -1 1844 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 575120 114 102 29578 29304 1 15488 2112 52 52 2704 clb auto 182.04 218897 48.82 0.34 70.1192 -51431.5 -70.1192 70.1192 19.57 0.0715634 0.061258 11.2038 8.26545 102 319152 33 1.58905e+08 1.26664e+08 1.78867e+07 6614.90 247.52 34.0276 26.4384 293704 19 59621 235362 44721484 9984605 79.8495 79.8495 -65611.6 -79.8495 -12.7907 -0.295467 2.24325e+07 8296.04 6.85 14.55 4.14727 3.46928 0.1049 0.3984 0.01026 0.5913
diff --git a/vtr_flow/tasks/timing_small/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/power_extended_circuit_list/config/config.txt
old mode 100755
new mode 100644
similarity index 64%
rename from vtr_flow/tasks/timing_small/config/config.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/power_extended_circuit_list/config/config.txt
index a46642435e4..7fa2d120cae
--- a/vtr_flow/tasks/timing_small/config/config.txt
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/power_extended_circuit_list/config/config.txt
@@ -1,44 +1,45 @@
-#
-############################################
+##############################################
# Configuration file for running experiments
##############################################
+script_params=-power
+
+cmos_tech_behavior=PTM_45nm/45nm.xml
+
# Path to directory of circuits to use
circuits_dir=benchmarks/verilog
# Path to directory of architectures to use
-archs_dir=arch/timing
+archs_dir=arch/power
# Add circuits to list to sweep
-#circuit_list_add=bgm.v
+circuit_list_add=bgm.v
circuit_list_add=blob_merge.v
circuit_list_add=boundtop.v
circuit_list_add=ch_intrinsics.v
circuit_list_add=diffeq1.v
circuit_list_add=diffeq2.v
-#circuit_list_add=LU8PEEng.v
+circuit_list_add=LU8PEEng.v
#circuit_list_add=LU32PEEng.v
#circuit_list_add=LU64PEEng.v
-#circuit_list_add=mcml.v
circuit_list_add=mkDelayWorker32B.v
circuit_list_add=mkPktMerge.v
circuit_list_add=mkSMAdapter4B.v
circuit_list_add=or1200.v
circuit_list_add=raygentop.v
circuit_list_add=sha.v
-#circuit_list_add=stereovision0.v
-#circuit_list_add=stereovision1.v
-#circuit_list_add=stereovision2.v
+circuit_list_add=mcml.v
+#circuit_list_add=tpu.16x16.int8.v
#circuit_list_add=stereovision3.v
# Add architectures to list to sweep
-arch_list_add=k6_frac_N10_mem32K_40nm.xml
+arch_list_add=k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml
# Parse info and how to parse
-parse_file=vpr_standard.txt
+parse_file=vpr_power.txt
-# Pass requirements
-pass_requirements_file=pass_requirements.txt
-
-script_params=-lut_size 6
+# How to parse QoR info
+qor_parse_file=qor_standard.txt
+# Pass requirements
+pass_requirements_file=pass_requirements_power.txt
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/power_extended_circuit_list/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/power_extended_circuit_list/config/golden_results.txt
new file mode 100644
index 00000000000..393c965070f
--- /dev/null
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/power_extended_circuit_list/config/golden_results.txt
@@ -0,0 +1,15 @@
+ 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 total_power routing_power_perc clock_power_perc tile_power_perc
+ k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml bgm.v common 867.00 22.44 392720 22 456.35 -1 -1 152760 -1 -1 2577 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 695172 257 32 32168 31683 1 18846 2877 61 61 3721 clb auto 26.48 248262 60.82 0.48 16.1566 -22531.6 -16.1566 16.1566 28.22 0.0762321 0.055229 9.03957 6.63975 78 389797 32 2.18169e+08 1.43244e+08 1.95891e+07 5264.48 145.86 34.2984 26.7649 366085 22 98144 432924 25406325 4095083 18.6941 18.6941 -25477 -18.6941 0 0 2.48035e+07 6665.81 7.25 12.23 5.95018 5.00666 0.1661 0.4522 0.02583 0.522
+ k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml blob_merge.v common 148.65 0.47 59392 18 80.41 -1 -1 67640 -1 -1 550 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 155888 36 100 6600 6700 1 2867 686 30 30 900 clb auto 3.45 44762 5.94 0.05 8.63778 -2522.46 -8.63778 8.63778 2.07 0.0244588 0.02103 2.31311 1.68049 68 74187 37 4.8774e+07 2.96417e+07 4.08678e+06 4540.87 37.08 6.66208 5.29516 63873 14 12588 62114 2688244 348253 9.86001 9.86001 -2850.16 -9.86001 0 0 5.07014e+06 5633.48 1.14 1.18 0.688574 0.601627 0.0241 0.394 0.04131 0.5647
+ k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml boundtop.v common 4.66 0.73 46956 2 0.35 -1 -1 37108 -1 -1 84 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66384 114 192 455 647 1 309 390 13 13 169 clb auto 0.07 749 0.36 0.00 1.5681 -199.971 -1.5681 1.5681 0.23 0.000602313 0.000526597 0.10156 0.0887043 38 1909 18 6.63067e+06 4.5271e+06 384612. 2275.81 0.59 0.241964 0.216609 1613 8 646 807 49022 15408 2.13287 2.13287 -254.934 -2.13287 0 0 489150. 2894.38 0.08 0.03 0.0163022 0.0151565 0.006178 0.4297 0.1195 0.4508
+ k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 2.76 0.05 9320 3 0.20 -1 -1 36188 -1 -1 68 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65168 99 130 363 493 1 256 298 12 12 144 clb auto 0.06 706 0.27 0.00 1.86328 -198.021 -1.86328 1.86328 0.18 0.0004578 0.000403482 0.0740588 0.0639477 46 1510 15 5.66058e+06 4.21279e+06 378970. 2631.74 0.50 0.17219 0.152097 1419 13 512 678 54408 17907 2.4649 2.4649 -230.915 -2.4649 0 0 486261. 3376.82 0.11 0.03 0.0160871 0.0147732 0.00814 0.2379 0.08094 0.6811
+ k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq1.v common 8.61 0.03 9224 15 0.33 -1 -1 34572 -1 -1 39 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 77360 162 96 999 932 1 698 302 16 16 256 mult_36 auto 0.22 5215 0.63 0.01 20.0279 -1731.76 -20.0279 20.0279 0.47 0.00157608 0.00143934 0.278083 0.247898 50 11710 30 1.21132e+07 4.08187e+06 780512. 3048.87 3.70 0.779349 0.707608 9689 15 2920 5783 1711731 425773 22.9164 22.9164 -1951.82 -22.9164 0 0 1.00276e+06 3917.05 0.20 0.31 0.0749135 0.0702716 0.007591 0.3632 0.01662 0.6202
+ k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq2.v common 7.12 0.03 8328 14 0.24 -1 -1 33584 -1 -1 26 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 70032 66 96 719 590 1 525 195 18 18 324 mult_36 auto 0.16 4839 0.37 0.00 15.5034 -893.993 -15.5034 15.5034 0.53 0.00144263 0.00134169 0.190362 0.173766 50 10126 22 1.57076e+07 4.17324e+06 1.01953e+06 3146.70 2.74 0.568759 0.526111 9219 16 2344 5156 2185950 507264 18.2221 18.2221 -1041.48 -18.2221 0 0 1.31112e+06 4046.65 0.23 0.36 0.0694535 0.0653959 0.009383 0.3437 0.02034 0.6359
+ k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml LU8PEEng.v common 789.29 21.52 227556 129 251.35 -1 -1 100896 -1 -1 2016 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 591360 114 102 29578 29304 1 16033 2284 54 54 2916 clb auto 22.37 233317 45.57 0.27 70.0908 -60679 -70.0908 70.0908 22.90 0.0537894 0.045836 8.8044 6.54388 104 338815 35 1.70873e+08 1.35934e+08 1.97479e+07 6772.27 307.40 32.3532 25.5337 315352 20 64444 251879 56108125 13858139 81.2538 81.2538 -73871.7 -81.2538 -12.6553 -0.198548 2.50445e+07 8588.64 6.73 20.99 4.16556 3.43053 0.1065 0.4335 0.01057 0.5559
+ k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mkDelayWorker32B.v common 66.02 0.81 78884 5 6.89 -1 -1 52424 -1 -1 456 506 47 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 320016 506 553 3285 3838 1 3022 1562 50 50 2500 memory auto 3.03 15018 5.12 0.04 5.96658 -1843.78 -5.96658 5.96658 18.84 0.011865 0.0107543 2.59753 2.3255 38 22736 27 1.47946e+08 5.03323e+07 6.86584e+06 2746.33 13.33 5.73711 5.23719 22040 16 4096 5145 3590122 925407 6.60387 6.60387 -2306.35 -6.60387 -4.22558 -0.295467 8.69095e+06 3476.38 2.47 1.10 0.530714 0.499249 0.1833 0.1385 0.03978 0.8217
+ k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mkPktMerge.v common 13.35 0.11 17044 2 0.08 -1 -1 33840 -1 -1 26 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 90676 311 156 972 1128 1 953 508 28 28 784 memory auto 0.36 8591 0.88 0.01 3.97992 -4268.71 -3.97992 3.97992 1.70 0.00251892 0.0021629 0.391523 0.329552 38 14938 15 4.25198e+07 9.62124e+06 2.03942e+06 2601.30 4.95 1.07268 0.9353 13839 16 2583 2995 3100698 901390 4.55746 4.55746 -5261.91 -4.55746 -19.8376 -0.322548 2.58559e+06 3297.95 0.57 0.65 0.116211 0.105436 0.08119 0.1583 0.01766 0.824
+ k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mkSMAdapter4B.v common 16.66 0.28 31932 7 2.65 -1 -1 37968 -1 -1 168 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 84748 193 205 2232 2437 1 1223 571 20 20 400 memory auto 0.75 9324 1.54 0.01 4.44075 -2589.41 -4.44075 4.44075 0.70 0.00303621 0.00237592 0.549264 0.437613 50 17629 34 2.07112e+07 1.17942e+07 1.26944e+06 3173.59 4.89 1.44796 1.21204 15071 15 4684 11657 1041882 233393 4.99386 4.99386 -3047.65 -4.99386 -9.22808 -0.342703 1.63222e+06 4080.54 0.34 0.44 0.227839 0.206644 0.03046 0.2113 0.02596 0.7628
+ k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml or1200.v common 68.02 0.59 40880 27 5.07 -1 -1 43988 -1 -1 246 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 120604 385 394 3979 4310 1 2366 1028 27 27 729 io auto 2.04 30806 5.39 0.04 12.8666 -11507.1 -12.8666 12.8666 1.67 0.00796698 0.00700203 2.04343 1.65559 76 52143 50 3.93038e+07 1.47499e+07 3.58343e+06 4915.54 40.94 4.75948 4.0721 45756 15 10811 38343 4397984 935571 14.4395 14.4395 -12847 -14.4395 0 0 4.48127e+06 6147.14 1.09 1.22 0.409397 0.370199 0.02253 0.4559 0.02645 0.5177
+ k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml raygentop.v common 24.33 0.34 33052 8 1.82 -1 -1 40508 -1 -1 135 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 86864 214 305 2625 2741 1 1491 663 22 22 484 mult_36 auto 0.78 12730 1.31 0.01 4.36407 -2392.08 -4.36407 4.36407 0.94 0.00349859 0.00309413 0.437934 0.374035 54 29305 42 2.50602e+07 1.08397e+07 1.67900e+06 3469.01 11.54 1.84401 1.62942 22068 15 6598 15260 3949561 907892 4.97912 4.97912 -3006.33 -4.97912 0 0 2.18083e+06 4505.84 0.43 0.82 0.193884 0.178171 0.02233 0.4743 0.04534 0.4803
+ k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml sha.v common 556.53 0.79 38084 20 530.17 -1 -1 95436 -1 -1 229 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 96576 38 36 3404 3440 1 1277 303 20 20 400 clb auto 1.28 14051 1.42 0.01 11.4453 -4263.51 -11.4453 11.4453 0.70 0.00382206 0.00315702 0.585971 0.425203 58 24122 36 2.07112e+07 1.23417e+07 1.47096e+06 3677.41 10.31 1.94801 1.55296 20434 17 5277 21230 697197 117307 13.441 13.441 -4982 -13.441 0 0 1.87544e+06 4688.60 0.34 0.40 0.257579 0.225983 0.01068 0.3887 0.03202 0.5793
+ k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mcml.v common 10319.98 61.51 954284 75 8539.25 -1 -1 447928 -1 -1 7355 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 1930112 36 33 134466 132924 1 42731 7610 102 102 10404 clb auto 63.93 523379 210.79 1.21 58.9597 -331654 -58.9597 58.9597 85.11 0.174684 0.146822 30.3166 22.918 82 733160 42 6.36957e+08 4.94176e+08 5.83608e+07 5609.45 845.06 98.6798 78.332 677500 21 167473 518593 81968438 17553658 64.9338 64.9338 -432445 -64.9338 -0.789768 -0.17036 7.31293e+07 7028.96 21.64 28.03 11.6943 10.0828 0.2977 0.3711 0.0137 0.6152
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/symbiflow/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/symbiflow/config/config.txt
similarity index 100%
rename from vtr_flow/tasks/regression_tests/vtr_reg_nightly/symbiflow/config/config.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/symbiflow/config/config.txt
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
new file mode 100644
index 00000000000..0074292af29
--- /dev/null
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/task_list.txt
@@ -0,0 +1,17 @@
+#Refer to Issue #1770 for details.
+#regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/adder_trees
+
+regression_tests/vtr_reg_nightly_test1/vpr_reg_mcnc
+regression_tests/vtr_reg_nightly_test1/vtr_reg_fpu_soft_logic_arch
+regression_tests/vtr_reg_nightly_test1/vtr_reg_fpu_hard_block_arch
+regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8
+regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/FIR_filters
+regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/FIR_filters_frac
+regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/multless_consts
+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/vpr_ispd
+
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vpr_ispd/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vpr_ispd/config/config.txt
similarity index 100%
rename from vtr_flow/tasks/regression_tests/vtr_reg_weekly/vpr_ispd/config/config.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vpr_ispd/config/config.txt
index 940a0f32268..1ab08c71eac 100644
--- a/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vpr_ispd/config/config.txt
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vpr_ispd/config/config.txt
@@ -11,12 +11,12 @@ archs_dir=arch/ispd
# Add circuits to list to sweep
circuit_list_add=FPGA-example1.blif
-circuit_list_add=FPGA-example2.blif
-circuit_list_add=FPGA-example3.blif
-circuit_list_add=FPGA-example4.blif
circuit_list_add=clk_design1.blif
circuit_list_add=clk_design2.blif
circuit_list_add=clk_design3.blif
+circuit_list_add=FPGA-example2.blif
+circuit_list_add=FPGA-example3.blif
+circuit_list_add=FPGA-example4.blif
circuit_list_add=clk_design4.blif
circuit_list_add=clk_design5.blif
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vpr_ispd/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vpr_ispd/config/golden_results.txt
new file mode 100644
index 00000000000..3d7a2ed394d
--- /dev/null
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vpr_ispd/config/golden_results.txt
@@ -0,0 +1,10 @@
+ arch circuit script_params vtr_flow_elapsed_time error num_IO num_CLB num_DSP num_BRAM vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_time placed_wirelength_est place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time routed_wirelength total_nets_routed total_connections_routed total_heap_pushes total_heap_pops logic_block_area_total logic_block_area_used routing_area_total routing_area_per_tile crit_path_route_success_iteration critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time router_lookahead_computation_time
+ ultrascale_ispd.xml FPGA-example1.blif common 101.17 72 220 2 2 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 5384092 51 20 3417 3407 1 3287 296 168 480 80640 -1 ultrascale_ispd 4.99 29850 0.81 0.01 -1 -1 -1 -1 -1 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 -1
+ ultrascale_ispd.xml clk_design1.blif common 112.15 109 592 2 2 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 5407588 57 20 9969 9959 30 9711 705 168 480 80640 -1 ultrascale_ispd 9.12 67741 3.44 0.02 -1 -1 -1 -1 -1 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 -1
+ ultrascale_ispd.xml clk_design2.blif common 389.92 244 5837 10 10 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 5895896 137 60 100115 100025 45 97978 6101 168 480 80640 -1 ultrascale_ispd 93.81 1228924 191.90 1.16 -1 -1 -1 -1 -1 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 -1
+ ultrascale_ispd.xml clk_design3.blif common 1917.84 374 22993 50 96 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 7113792 217 120 400080 399454 35 390926 23513 168 480 80640 -1 ultrascale_ispd 249.26 6265294 1541.16 8.85 -1 -1 -1 -1 -1 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 -1
+ ultrascale_ispd.xml FPGA-example2.blif common 4286.23 456 39262 200 400 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 7961780 303 150 545542 542692 1 539559 40318 168 480 80640 -1 ultrascale_ispd 821.67 12825040 3322.00 18.04 -1 -1 -1 -1 -1 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 -1
+ ultrascale_ispd.xml FPGA-example3.blif common 4014.77 606 30856 200 500 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 7736816 403 200 431203 428403 1 429172 32162 168 480 80640 -1 ultrascale_ispd 626.78 21241641 3250.48 19.45 -1 -1 -1 -1 -1 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 -1
+ ultrascale_ispd.xml FPGA-example4.blif common 5719.23 -1 -1 -1 -1 exited with return code 1 v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 6038156 403 200 850587 844787 1 -1 -1 168 480 -1 -1 -1 5701.42 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
+ ultrascale_ispd.xml clk_design4.blif common 4013.53 484 39151 150 366 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 8290268 292 150 685438 683387 40 669318 40151 168 480 80640 -1 ultrascale_ispd 443.56 11666561 3417.94 19.26 -1 -1 -1 -1 -1 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 -1
+ ultrascale_ispd.xml clk_design5.blif common 6861.38 515 51693 420 885 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 9394248 307 150 948147 942073 56 928185 53513 168 480 80640 -1 ultrascale_ispd 643.52 14614799 6045.16 31.67 -1 -1 -1 -1 -1 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 -1
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vpr_reg_mcnc/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vpr_reg_mcnc/config/config.txt
similarity index 100%
rename from vtr_flow/tasks/regression_tests/vtr_reg_nightly/vpr_reg_mcnc/config/config.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vpr_reg_mcnc/config/config.txt
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vpr_reg_mcnc/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vpr_reg_mcnc/config/golden_results.txt
new file mode 100644
index 00000000000..867c1dab380
--- /dev/null
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vpr_reg_mcnc/config/golden_results.txt
@@ -0,0 +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
+ k6_frac_N10_40nm.xml alu4.pre-vpr.blif common 3.44 -1 -1 -1 -1 -1 -1 -1 -1 -1 78 14 -1 -1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 71968 14 8 926 934 0 489 100 11 11 121 clb auto 0.59 4606 0.32 0.00 4.14102 -29.7523 -4.14102 nan 0.16 0.00110303 0.000853863 0.13314 0.105384 52 7437 24 4.36541e+06 4.20373e+06 379421. 3135.71 1.34 0.463591 0.376734 6938 19 3079 14370 484288 90595 4.83499 nan -34.8915 -4.83499 0 0 499620. 4129.09 0.08 0.16 0.0868834 0.0757929
+ k6_frac_N10_40nm.xml apex2.pre-vpr.blif common 5.12 -1 -1 -1 -1 -1 -1 -1 -1 -1 100 38 -1 -1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 72252 38 3 1113 1116 0 660 141 12 12 144 clb auto 1.06 7385 0.53 0.00 4.95175 -14.4002 -4.95175 nan 0.19 0.00137339 0.00103165 0.1835 0.143426 72 12351 45 5.3894e+06 5.3894e+06 636745. 4421.84 2.00 0.636364 0.516804 11456 17 4645 24063 904212 148872 5.55636 nan -16.3985 -5.55636 0 0 794932. 5520.36 0.12 0.24 0.101648 0.0908761
+ k6_frac_N10_40nm.xml apex4.pre-vpr.blif common 4.75 -1 -1 -1 -1 -1 -1 -1 -1 -1 81 9 -1 -1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 71844 9 19 897 916 0 559 109 11 11 121 clb auto 1.01 6066 0.46 0.00 4.29231 -70.9295 -4.29231 nan 0.19 0.00115877 0.000891984 0.181013 0.142644 72 10169 35 4.36541e+06 4.36541e+06 523260. 4324.46 1.96 0.660823 0.545616 9121 18 3785 19131 685405 121198 5.08251 nan -82.3409 -5.08251 0 0 653410. 5400.08 0.09 0.19 0.0835726 0.0752013
+ k6_frac_N10_40nm.xml bigkey.pre-vpr.blif common 5.54 -1 -1 -1 -1 -1 -1 -1 -1 -1 71 229 -1 -1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 71796 229 197 1364 1561 1 539 497 16 16 256 io auto 0.74 4443 0.81 0.01 2.40107 -604.293 -2.40107 2.40107 0.41 0.0027944 0.00245669 0.283526 0.239774 40 7623 19 1.05632e+07 3.82647e+06 697968. 2726.44 2.04 0.91241 0.805425 7058 12 1744 4785 241404 52708 3.01949 3.01949 -726.043 -3.01949 0 0 870840. 3401.72 0.16 0.12 0.0769539 0.0714275
+ k6_frac_N10_40nm.xml clma.pre-vpr.blif common 25.77 -1 -1 -1 -1 -1 -1 -1 -1 -1 306 62 -1 -1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 109888 62 82 3672 3754 1 2349 450 20 20 400 clb auto 2.88 28739 2.80 0.02 7.33978 -292.565 -7.33978 7.33978 0.78 0.00535795 0.00430039 0.90086 0.625353 92 46890 40 1.74617e+07 1.64916e+07 2.37849e+06 5946.23 14.95 3.7652 2.92496 42225 16 13783 58193 2198678 343498 8.16378 8.16378 -329.46 -8.16378 0 0 3.01539e+06 7538.48 0.57 0.79 0.392962 0.34562
+ k6_frac_N10_40nm.xml des.pre-vpr.blif common 4.55 -1 -1 -1 -1 -1 -1 -1 -1 -1 51 256 -1 -1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66688 256 245 954 1199 0 581 552 18 18 324 io auto 0.24 4989 0.56 0.01 3.37847 -629.355 -3.37847 nan 0.55 0.00165859 0.00148747 0.18154 0.161538 44 8531 14 1.37969e+07 2.74859e+06 970398. 2995.06 1.54 0.600651 0.550646 7969 12 1965 4152 217807 49587 4.23063 nan -775 -4.23063 0 0 1.26150e+06 3893.53 0.25 0.14 0.0814747 0.0769288
+ k6_frac_N10_40nm.xml diffeq.pre-vpr.blif common 2.98 -1 -1 -1 -1 -1 -1 -1 -1 -1 66 64 -1 -1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 70048 64 39 1371 1410 1 542 169 11 11 121 clb auto 0.40 3413 0.33 0.00 4.67654 -912.396 -4.67654 4.67654 0.16 0.00112205 0.000934451 0.141238 0.113756 46 6130 26 4.36541e+06 3.557e+06 343362. 2837.71 1.00 0.412951 0.346273 5260 13 1999 5620 169131 35211 5.53977 5.53977 -1090.5 -5.53977 0 0 440296. 3638.81 0.08 0.13 0.0924228 0.0845461
+ k6_frac_N10_40nm.xml dsip.pre-vpr.blif common 5.11 -1 -1 -1 -1 -1 -1 -1 -1 -1 71 229 -1 -1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 71668 229 197 1362 1559 1 566 497 16 16 256 io auto 0.67 4793 0.76 0.01 2.51785 -604.704 -2.51785 2.51785 0.44 0.00187093 0.00167223 0.272921 0.229148 46 7938 19 1.05632e+07 3.82647e+06 786978. 3074.13 1.63 0.783703 0.688119 7482 10 1826 4727 234733 52733 3.19583 3.19583 -717 -3.19583 0 0 1.01084e+06 3948.58 0.21 0.11 0.0745403 0.0698473
+ k6_frac_N10_40nm.xml elliptic.pre-vpr.blif common 9.24 -1 -1 -1 -1 -1 -1 -1 -1 -1 166 131 -1 -1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 91456 131 114 3421 3535 1 1164 411 15 15 225 clb auto 2.42 10398 1.17 0.01 6.52628 -3784.19 -6.52628 6.52628 0.45 0.00316671 0.00260468 0.470256 0.34649 62 16689 24 9.10809e+06 8.9464e+06 909814. 4043.62 2.88 1.27953 1.02568 15000 17 4999 21128 713315 123027 7.49463 7.49463 -4392.46 -7.49463 0 0 1.12687e+06 5008.33 0.18 0.35 0.234877 0.205336
+ k6_frac_N10_40nm.xml ex1010.pre-vpr.blif common 23.08 -1 -1 -1 -1 -1 -1 -1 -1 -1 288 10 -1 -1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 97492 10 10 2659 2669 0 1393 308 19 19 361 clb auto 3.05 26140 1.73 0.02 5.75218 -55.7663 -5.75218 nan 0.63 0.00744015 0.0058247 0.578256 0.402009 92 44132 33 1.55754e+07 1.55215e+07 2.13123e+06 5903.67 13.72 2.54972 1.95686 39597 17 9715 60001 2696762 353002 6.60772 nan -63.286 -6.60772 0 0 2.70169e+06 7483.90 0.57 0.87 0.329233 0.29153
+ k6_frac_N10_40nm.xml ex5p.pre-vpr.blif common 3.18 -1 -1 -1 -1 -1 -1 -1 -1 -1 62 8 -1 -1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 68544 8 63 761 824 0 435 133 10 10 100 clb auto 0.62 3998 0.34 0.00 3.54271 -155.067 -3.54271 nan 0.15 0.00100409 0.000792216 0.133496 0.105256 62 6550 31 3.44922e+06 3.34143e+06 366588. 3665.88 1.10 0.368646 0.303455 6094 17 2709 12574 426888 79431 4.1719 nan -186.289 -4.1719 0 0 454102. 4541.02 0.07 0.13 0.0655286 0.0591958
+ k6_frac_N10_40nm.xml frisc.pre-vpr.blif common 9.55 -1 -1 -1 -1 -1 -1 -1 -1 -1 169 20 -1 -1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 90640 20 116 3175 3291 1 1278 305 15 15 225 clb auto 1.78 13380 1.19 0.01 7.56455 -3941.67 -7.56455 7.56455 0.33 0.00304637 0.00254392 0.457239 0.344978 76 22460 36 9.10809e+06 9.10809e+06 1.08042e+06 4801.85 3.55 1.33179 1.078 20283 19 6164 25645 1097708 182881 8.69548 8.69548 -4541.25 -8.69548 0 0 1.34805e+06 5991.31 0.23 0.56 0.337532 0.3042
+ k6_frac_N10_40nm.xml misex3.pre-vpr.blif common 4.28 -1 -1 -1 -1 -1 -1 -1 -1 -1 72 14 -1 -1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 70048 14 14 828 842 0 472 100 11 11 121 clb auto 0.78 4472 0.39 0.00 4.02064 -52.776 -4.02064 nan 0.18 0.00137209 0.000987841 0.159545 0.124835 54 7869 46 4.36541e+06 3.88037e+06 393282. 3250.26 1.77 0.686607 0.573602 6576 16 2671 12354 410056 75432 4.89666 nan -62.2285 -4.89666 0 0 511363. 4226.14 0.08 0.17 0.0951289 0.0866438
+ k6_frac_N10_40nm.xml pdc.pre-vpr.blif common 19.66 -1 -1 -1 -1 -1 -1 -1 -1 -1 271 16 -1 -1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 99812 16 40 2839 2879 0 1511 327 19 19 361 clb auto 2.41 23498 1.84 0.01 6.13416 -223.252 -6.13416 nan 0.62 0.00416181 0.00326704 0.62494 0.434793 84 39816 34 1.55754e+07 1.46053e+07 1.95904e+06 5426.71 10.81 2.58351 1.98286 35391 18 8962 48547 1930691 286226 7.01 nan -249.162 -7.01 0 0 2.48734e+06 6890.13 0.53 0.78 0.352337 0.312052
+ k6_frac_N10_40nm.xml s298.pre-vpr.blif common 3.06 -1 -1 -1 -1 -1 -1 -1 -1 -1 64 4 -1 -1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 69864 4 6 726 732 1 380 74 10 10 100 clb auto 0.56 3569 0.31 0.00 5.54077 -44.6464 -5.54077 5.54077 0.15 0.000932039 0.000725018 0.144332 0.114633 50 5478 26 3.44922e+06 3.44922e+06 295697. 2956.97 1.15 0.490365 0.40947 4975 16 2083 8762 272937 50612 6.18041 6.18041 -52.1211 -6.18041 0 0 379824. 3798.24 0.06 0.11 0.0633702 0.0581082
+ k6_frac_N10_40nm.xml s38417.pre-vpr.blif common 12.68 -1 -1 -1 -1 -1 -1 -1 -1 -1 250 29 -1 -1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 105740 29 106 4782 4888 1 2018 385 18 18 324 clb auto 2.81 13078 1.74 0.01 4.46817 -3195.71 -4.46817 4.46817 0.54 0.00504262 0.00357398 0.678409 0.488165 52 21680 48 1.37969e+07 1.34735e+07 1.12378e+06 3468.47 4.35 1.99814 1.56955 19009 14 6279 16868 582183 118551 5.45344 5.45344 -3646.72 -5.45344 0 0 1.48031e+06 4568.86 0.26 0.40 0.295381 0.266849
+ k6_frac_N10_40nm.xml s38584.1.pre-vpr.blif common 11.08 -1 -1 -1 -1 -1 -1 -1 -1 -1 227 38 -1 -1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 103256 38 304 4422 4726 1 2038 569 18 18 324 clb auto 2.16 13449 1.89 0.02 4.16995 -2665.67 -4.16995 4.16995 0.53 0.00511993 0.00362562 0.670431 0.488695 58 23840 35 1.37969e+07 1.22339e+07 1.26150e+06 3893.53 3.58 1.85408 1.46664 20578 14 6433 17363 638387 131973 5.22573 5.22573 -3068.94 -5.22573 0 0 1.60510e+06 4954.00 0.29 0.37 0.278756 0.251954
+ k6_frac_N10_40nm.xml seq.pre-vpr.blif common 4.56 -1 -1 -1 -1 -1 -1 -1 -1 -1 85 41 -1 -1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 70788 41 35 1006 1041 0 599 161 12 12 144 clb auto 0.85 6384 0.45 0.00 4.12452 -119.318 -4.12452 nan 0.22 0.00120979 0.000929262 0.152542 0.120736 66 11228 27 5.3894e+06 4.58099e+06 593979. 4124.86 1.79 0.507734 0.413392 10130 18 4219 21318 758361 129163 4.91293 nan -139.398 -4.91293 0 0 735425. 5107.12 0.11 0.20 0.0896483 0.0802677
+ k6_frac_N10_40nm.xml spla.pre-vpr.blif common 12.27 -1 -1 -1 -1 -1 -1 -1 -1 -1 213 16 -1 -1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 89544 16 46 2232 2278 0 1178 275 17 17 289 clb auto 1.81 15813 1.20 0.01 5.56061 -183.389 -5.56061 nan 0.46 0.00321703 0.00232273 0.404551 0.294928 72 27375 40 1.21262e+07 1.14794e+07 1.37091e+06 4743.65 6.17 1.49004 1.16823 24226 19 6729 36115 1420951 217710 6.47301 nan -214.84 -6.47301 0 0 1.71058e+06 5918.98 0.29 0.50 0.237402 0.211617
+ k6_frac_N10_40nm.xml tseng.pre-vpr.blif common 2.61 -1 -1 -1 -1 -1 -1 -1 -1 -1 63 52 -1 -1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 72288 52 122 1461 1583 1 476 237 10 10 100 clb auto 0.41 2412 0.32 0.00 4.20921 -1050.39 -4.20921 4.20921 0.12 0.00111235 0.000945949 0.128769 0.104966 48 4749 25 3.44922e+06 3.39532e+06 287248. 2872.48 0.83 0.437326 0.368397 4022 12 1351 3243 108746 26426 4.95741 4.95741 -1201.15 -4.95741 0 0 366588. 3665.88 0.06 0.08 0.0641406 0.0592094
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_fpu_hard_block_arch/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vtr_reg_fpu_hard_block_arch/config/config.txt
similarity index 100%
rename from vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_fpu_hard_block_arch/config/config.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vtr_reg_fpu_hard_block_arch/config/config.txt
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vtr_reg_fpu_hard_block_arch/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vtr_reg_fpu_hard_block_arch/config/golden_results.txt
new file mode 100644
index 00000000000..9dfe620405b
--- /dev/null
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vtr_reg_fpu_hard_block_arch/config/golden_results.txt
@@ -0,0 +1,9 @@
+ 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 routed_wirelength total_nets_routed total_connections_routed total_heap_pushes total_heap_pops logic_block_area_total logic_block_area_used routing_area_total routing_area_per_tile crit_path_route_success_iteration critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time router_lookahead_computation_time num_fpu
+ hard_fpu_arch_timing.xml bfly.v common 3.52 0.04 7084 1 0.03 -1 -1 30800 -1 -1 0 193 -1 -1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 67968 193 64 833 649 1 353 260 24 24 576 io auto 1.73 4892 0.34 0.00 2.985 -1328.73 -2.985 2.985 0.04 0.00144852 0.00132865 0.177888 0.163098 6891 -1 -1 -1 -1 1.06129e+06 103149 1.28794e+06 2236.02 3 2.985 2.985 -1361.67 -2.985 -40.8482 -0.0851 0.43 0.202384 0.186478 0.34 3
+ hard_fpu_arch_timing.xml bgm.v common 6.06 0.05 8748 1 0.03 -1 -1 31424 -1 -1 0 257 -1 -1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 78524 257 32 1281 693 1 788 298 38 38 1444 block_FPU auto 0.55 14344 0.70 0.00 2.985 -3028.35 -2.985 2.985 0.16 0.00303771 0.0028378 0.413442 0.386031 19702 -1 -1 -1 -1 2.90196e+06 309448 3.35777e+06 2325.33 5 2.985 2.985 -3248.97 -2.985 -54.94 -0.0851 2.54 0.475865 0.446046 1.12 9
+ hard_fpu_arch_timing.xml dscg.v common 7.53 0.03 7028 1 0.02 -1 -1 30640 -1 -1 0 129 -1 -1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 65924 129 64 769 585 1 513 198 32 32 1024 block_FPU auto 3.94 7523 0.34 0.00 2.985 -1389.44 -2.985 2.985 0.15 0.00139943 0.0012798 0.190532 0.174037 11263 -1 -1 -1 -1 2.063e+06 171916 2.37490e+06 2319.23 4 2.985 2.985 -1536.22 -2.985 -21.8252 -0.0851 1.62 0.218576 0.200755 0.71 5
+ hard_fpu_arch_timing.xml fir.v common 34.82 0.04 7436 1 0.03 -1 -1 31112 -1 -1 37 161 -1 -1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64984 161 32 993 808 1 545 234 30 30 900 block_FPU auto 32.20 6139 0.35 0.00 2.985 -1334.95 -2.985 2.985 0.07 0.00133228 0.00120622 0.178816 0.161419 9043 -1 -1 -1 -1 1.6779e+06 222344 2.03108e+06 2256.75 8 2.985 2.985 -1438.53 -2.985 -39.3898 -0.0851 0.87 0.218407 0.198698 0.60 4
+ hard_fpu_arch_timing.xml mm3.v common 2.16 0.02 6592 1 0.01 -1 -1 30420 -1 -1 0 193 -1 -1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64444 193 32 545 422 1 289 227 21 21 441 io auto 0.91 3334 0.23 0.00 2.985 -795.73 -2.985 2.985 0.03 0.000961119 0.000880146 0.116958 0.106907 4395 -1 -1 -1 -1 809148 68766.3 979092. 2220.16 5 2.985 2.985 -808.623 -2.985 -21.7856 -0.0851 0.26 0.136236 0.125258 0.24 2
+ hard_fpu_arch_timing.xml ode.v common 32.26 0.04 7812 1 0.07 -1 -1 34064 -1 -1 151 130 -1 -1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 69096 130 72 1194 1103 1 589 355 19 19 361 io auto 30.45 4509 0.45 0.00 2.985 -1330.22 -2.985 2.985 0.03 0.00133385 0.001185 0.18753 0.165111 6764 -1 -1 -1 -1 653279 414890 795482. 2203.55 10 2.985 2.985 -1412.7 -2.985 -51.2306 -0.0851 0.46 0.234493 0.208738 0.18 2
+ hard_fpu_arch_timing.xml syn2.v common 3.64 0.03 7156 1 0.02 -1 -1 30516 -1 -1 0 161 -1 -1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63668 161 128 641 490 1 479 293 30 30 900 block_FPU auto 1.09 7529 0.40 0.00 2.985 -1497.01 -2.985 2.985 0.07 0.00160695 0.00149225 0.199129 0.184509 10184 -1 -1 -1 -1 1.6779e+06 137533 2.03108e+06 2256.75 5 2.985 2.985 -1576.57 -2.985 -16.078 -0.0851 0.81 0.231911 0.215941 0.56 4
+ hard_fpu_arch_timing.xml syn7.v common 36.71 0.08 9744 1 0.04 -1 -1 32256 -1 -1 0 161 -1 -1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 120036 161 128 1921 499 1 1697 310 54 54 2916 block_FPU auto 2.40 52707 1.87 0.02 2.985 -8069.08 -2.985 2.985 0.40 0.00742665 0.00695402 1.21809 1.1486 70035 -1 -1 -1 -1 6.08571e+06 722046 6.89978e+06 2366.18 7 2.985 2.985 -8846.29 -2.985 -33.8127 -0.0851 27.77 1.41257 1.3364 2.55 21
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_fpu_soft_logic_arch/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vtr_reg_fpu_soft_logic_arch/config/config.txt
similarity index 100%
rename from vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_fpu_soft_logic_arch/config/config.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vtr_reg_fpu_soft_logic_arch/config/config.txt
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vtr_reg_fpu_soft_logic_arch/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vtr_reg_fpu_soft_logic_arch/config/golden_results.txt
new file mode 100644
index 00000000000..18d7da6128e
--- /dev/null
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vtr_reg_fpu_soft_logic_arch/config/golden_results.txt
@@ -0,0 +1,8 @@
+ 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 routed_wirelength total_nets_routed total_connections_routed total_heap_pushes total_heap_pops logic_block_area_total logic_block_area_used routing_area_total routing_area_per_tile crit_path_route_success_iteration critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time router_lookahead_computation_time
+ soft_fpu_arch_timing.xml bfly.v common 209.34 3.55 172016 60 98.70 -1 -1 86072 -1 -1 6915 193 -1 -1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 421132 193 64 24163 24227 1 18280 7172 86 86 7396 clb auto 4.75 224057 69.57 0.48 36.3673 -17014 -36.3673 36.3673 1.30 0.0345782 0.0298013 5.12497 3.72355 373034 -1 -1 -1 -1 1.61728e+07 1.58496e+07 1.77311e+07 2397.39 31 38.4344 38.4344 -18002.8 -38.4344 -53.1016 -0.0851 10.80 8.32891 6.32924 8.04
+ soft_fpu_arch_timing.xml bgm.v common 1108.43 22.96 415804 60 672.95 -1 -1 198732 -1 -1 17932 257 -1 -1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 975984 257 32 61892 61924 1 47401 18221 136 136 18496 clb auto 13.86 624222 315.19 2.01 36.3406 -43484.4 -36.3406 36.3406 4.27 0.0939644 0.0799397 13.4415 10.0182 1010525 -1 -1 -1 -1 4.11556e+07 4.11006e+07 4.47194e+07 2417.79 32 39.2474 39.2474 -46199.2 -39.2474 -78.9829 -0.0851 30.34 22.3465 17.1669 18.65
+ soft_fpu_arch_timing.xml dscg.v common 187.68 3.53 172428 60 96.10 -1 -1 85312 -1 -1 6472 129 -1 -1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 402876 129 64 22456 22520 1 16929 6665 83 83 6889 clb auto 4.20 204966 53.50 0.38 34.9764 -14868.2 -34.9764 34.9764 1.14 0.0309782 0.0263939 4.54343 3.23535 344955 -1 -1 -1 -1 1.50382e+07 1.48343e+07 1.65016e+07 2395.36 34 38.5028 38.5028 -15844.8 -38.5028 -46.6351 -0.0851 10.77 7.72947 5.76568 6.80
+ soft_fpu_arch_timing.xml fir.v common 175.32 2.59 152636 60 83.96 -1 -1 81724 -1 -1 6576 161 -1 -1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 407704 161 32 22750 22782 1 17239 6769 84 84 7056 clb auto 5.28 209929 54.52 0.41 34.2885 -15011.3 -34.2885 34.2885 1.14 0.0331567 0.0285013 4.43226 3.20271 348788 -1 -1 -1 -1 1.54118e+07 1.50726e+07 1.69066e+07 2396.05 31 37.511 37.511 -15968.2 -37.511 -52.5806 -0.0851 10.77 7.55211 5.69191 6.22
+ soft_fpu_arch_timing.xml mm3.v common 96.96 1.46 110528 60 40.18 -1 -1 66740 -1 -1 4729 193 -1 -1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 301096 193 32 16498 16530 1 12703 4954 71 71 5041 clb auto 3.10 145773 31.10 0.24 34.7085 -10616.8 -34.7085 34.7085 0.71 0.0214427 0.0184057 3.09962 2.17903 246911 -1 -1 -1 -1 1.09126e+07 1.08393e+07 1.20254e+07 2385.52 34 37.0018 37.0018 -11230.2 -37.0018 -30.3281 -0.0851 7.60 5.35525 4.01892 4.33
+ soft_fpu_arch_timing.xml ode.v common 86.54 1.38 111644 60 33.34 -1 -1 60588 -1 -1 4046 130 -1 -1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 253596 130 72 14280 14352 1 10655 4248 66 66 4356 clb auto 3.04 123737 29.10 0.21 33.8953 -11304.7 -33.8953 33.8953 0.76 0.0187799 0.015886 2.86835 2.06363 205726 -1 -1 -1 -1 9.38847e+06 9.27387e+06 1.03689e+07 2380.36 33 36.3614 36.3614 -11942.9 -36.3614 -62.9571 -0.0851 6.40 4.89539 3.70307 4.51
+ soft_fpu_arch_timing.xml syn2.v common 246.18 3.98 192136 59 118.73 -1 -1 90300 -1 -1 7281 161 -1 -1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 438952 161 128 25307 25435 1 19423 7570 88 88 7744 clb auto 4.92 238655 79.75 0.68 34.6875 -19395.1 -34.6875 34.6875 1.47 0.0501929 0.0436112 5.31494 3.9728 394789 -1 -1 -1 -1 1.69521e+07 1.66885e+07 1.85753e+07 2398.67 41 37.243 37.243 -20432.3 -37.243 -38.0503 -0.0851 16.05 10.5235 8.01329 7.65
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/complex_switch/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/complex_switch/config/config.txt
similarity index 100%
rename from vtr_flow/tasks/regression_tests/vtr_reg_nightly/complex_switch/config/config.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/complex_switch/config/config.txt
index 194fd4c4983..4d43c00bf52 100644
--- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/complex_switch/config/config.txt
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/complex_switch/config/config.txt
@@ -14,8 +14,6 @@ circuit_list_add=bgm.v
circuit_list_add=blob_merge.v
circuit_list_add=boundtop.v
circuit_list_add=LU8PEEng.v
-circuit_list_add=LU32PEEng.v
-circuit_list_add=mcml.v
circuit_list_add=mkDelayWorker32B.v
circuit_list_add=mkSMAdapter4B.v
circuit_list_add=or1200.v
@@ -24,6 +22,8 @@ circuit_list_add=sha.v
circuit_list_add=stereovision0.v
circuit_list_add=stereovision1.v
circuit_list_add=stereovision2.v
+circuit_list_add=LU32PEEng.v
+circuit_list_add=mcml.v
# Add architectures to list to sweep
arch_list_add=k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/complex_switch/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/complex_switch/config/golden_results.txt
similarity index 100%
rename from vtr_flow/tasks/regression_tests/vtr_reg_nightly/complex_switch/config/golden_results.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/complex_switch/config/golden_results.txt
diff --git a/vtr_flow/tasks/func_multiclock/blanket/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/func_multiclock/blanket/config/config.txt
similarity index 100%
rename from vtr_flow/tasks/func_multiclock/blanket/config/config.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/func_multiclock/blanket/config/config.txt
diff --git a/vtr_flow/tasks/func_multiclock/blanket/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/func_multiclock/blanket/config/golden_results.txt
similarity index 100%
rename from vtr_flow/tasks/func_multiclock/blanket/config/golden_results.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/func_multiclock/blanket/config/golden_results.txt
diff --git a/vtr_flow/tasks/func_multiclock/iterative/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/func_multiclock/iterative/config/config.txt
similarity index 100%
rename from vtr_flow/tasks/func_multiclock/iterative/config/config.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/func_multiclock/iterative/config/config.txt
diff --git a/vtr_flow/tasks/func_multiclock/iterative/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/func_multiclock/iterative/config/golden_results.txt
similarity index 100%
rename from vtr_flow/tasks/func_multiclock/iterative/config/golden_results.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/func_multiclock/iterative/config/golden_results.txt
diff --git a/vtr_flow/tasks/multiclock_mcnc/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/func_multiclock/multiclock_mcnc/config/config.txt
similarity index 100%
rename from vtr_flow/tasks/multiclock_mcnc/config/config.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/func_multiclock/multiclock_mcnc/config/config.txt
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/func_multiclock/multiclock_mcnc/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/func_multiclock/multiclock_mcnc/config/golden_results.txt
new file mode 100644
index 00000000000..dabe58c85d0
--- /dev/null
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/func_multiclock/multiclock_mcnc/config/golden_results.txt
@@ -0,0 +1,11 @@
+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
+k6_frac_N10_40nm.xml bigkey.blif common 5.28 -1 -1 3 0.34 -1 -1 35056 -1 -1 53 229 -1 -1 success v8.0.0-3535-ge4ce792ea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-17T19:06:09 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 46028 229 197 1023 1220 1 510 479 16 16 256 io auto 0.21 3413 0.56 0.00 2.1735 -526.299 -2.1735 2.1735 0.39 0.00138821 0.00120378 0.19781 0.168309 40 6116 17 1.05632e+07 2.85638e+06 697968. 2726.44 2.40 0.722292 0.640772 5568 9 1309 2279 135603 31763 2.49868 2.49868 -621.799 -2.49868 0 0 870840. 3401.72 0.16 0.07 0.0510449 0.0478126
+k6_frac_N10_40nm.xml clma.blif common 5.08 -1 -1 7 2.05 -1 -1 39340 -1 -1 77 36 -1 -1 success v8.0.0-3535-ge4ce792ea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-17T19:06:09 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 32676 36 82 542 624 1 390 195 11 11 121 clb auto 0.35 2039 0.33 0.00 4.11584 -147.948 -4.11584 4.11584 0.15 0.000539492 0.000452693 0.106625 0.0857617 40 4434 24 4.36541e+06 4.14984e+06 303235. 2506.08 1.15 0.303278 0.252285 3724 17 2001 6967 214647 45904 4.75061 4.75061 -182.205 -4.75061 0 0 379421. 3135.71 0.06 0.06 0.0359416 0.0326671
+k6_frac_N10_40nm.xml diffeq.blif common 3.20 -1 -1 8 0.40 -1 -1 34060 -1 -1 51 64 -1 -1 success v8.0.0-3535-ge4ce792ea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-17T19:06:09 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 34940 64 39 941 980 1 450 154 10 10 100 clb auto 0.42 2664 0.24 0.00 4.29897 -783.884 -4.29897 4.29897 0.12 0.000839617 0.000669735 0.100486 0.0795009 46 5017 28 3.44922e+06 2.74859e+06 276332. 2763.32 1.05 0.326802 0.269909 4217 16 1848 5381 166684 35585 4.95374 4.95374 -932.485 -4.95374 0 0 354105. 3541.05 0.05 0.08 0.0542635 0.0494947
+k6_frac_N10_40nm.xml dsip.blif common 6.16 -1 -1 3 0.30 -1 -1 34940 -1 -1 68 229 -1 -1 success v8.0.0-3535-ge4ce792ea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-17T19:06:09 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 47348 229 197 1135 1332 1 648 494 16 16 256 io auto 0.53 4829 0.66 0.01 2.11998 -540.899 -2.11998 2.11998 0.39 0.0015698 0.00130015 0.210921 0.176933 36 9346 20 1.05632e+07 3.66479e+06 638738. 2495.07 2.79 0.723593 0.631411 8188 14 2350 5770 322638 68924 2.64997 2.64997 -662.41 -2.64997 0 0 786978. 3074.13 0.15 0.12 0.076965 0.0713829
+k6_frac_N10_40nm.xml elliptic.blif common 10.48 -1 -1 10 1.16 -1 -1 37272 -1 -1 133 131 -1 -1 success v8.0.0-3535-ge4ce792ea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-17T19:06:09 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 56752 131 114 2471 2585 1 967 378 14 14 196 clb auto 1.84 9009 0.83 0.01 6.26362 -3059.17 -6.26362 6.26362 0.28 0.00212795 0.00173305 0.286733 0.219064 64 15845 47 7.76074e+06 7.1679e+06 810706. 4136.26 4.27 1.22946 1.00099 14220 16 4723 20791 818717 140043 7.05815 7.05815 -3531.55 -7.05815 0 0 1.00880e+06 5146.95 0.16 0.27 0.154401 0.13779
+k6_frac_N10_40nm.xml frisc.blif common 13.84 -1 -1 12 1.91 -1 -1 37256 -1 -1 153 20 -1 -1 success v8.0.0-3535-ge4ce792ea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-17T19:06:09 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 62524 20 116 2477 2593 1 1097 289 15 15 225 clb auto 2.14 12755 0.94 0.01 6.79269 -3257.02 -6.79269 6.79269 0.34 0.00217438 0.00179657 0.327538 0.24583 76 21374 38 9.10809e+06 8.24578e+06 1.08042e+06 4801.85 6.09 1.27911 1.034 19100 16 5620 24310 1037891 171913 8.29693 8.29693 -3979.77 -8.29693 0 0 1.34805e+06 5991.31 0.22 0.35 0.179872 0.160752
+k6_frac_N10_40nm.xml s298.blif common 3.83 -1 -1 8 0.53 -1 -1 34316 -1 -1 62 4 -1 -1 success v8.0.0-3535-ge4ce792ea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-17T19:06:09 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 34504 4 6 671 677 1 352 72 10 10 100 clb auto 0.56 3591 0.22 0.00 4.75477 -39.1418 -4.75477 4.75477 0.12 0.000769266 0.000586248 0.09084 0.0707559 52 5575 27 3.44922e+06 3.34143e+06 305142. 3051.42 1.47 0.36114 0.295188 5399 17 2374 11722 416659 74881 5.56322 5.56322 -46.7971 -5.56322 0 0 401807. 4018.07 0.06 0.11 0.0543908 0.049368
+k6_frac_N10_40nm.xml s38417.blif common 12.03 -1 -1 6 2.75 -1 -1 42360 -1 -1 177 29 -1 -1 success v8.0.0-3535-ge4ce792ea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-17T19:06:09 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 63792 29 106 3450 3556 1 1202 312 16 16 256 clb auto 1.56 8615 1.15 0.01 3.98518 -2557.22 -3.98518 3.98518 0.39 0.00302166 0.00218012 0.456703 0.332458 46 14847 24 1.05632e+07 9.53924e+06 786978. 3074.13 3.52 1.37805 1.08296 13205 15 5027 16599 520957 107073 4.83175 4.83175 -2954.7 -4.83175 0 0 1.01084e+06 3948.58 0.17 0.30 0.238471 0.215337
+k6_frac_N10_40nm.xml s38584.1.blif common 12.46 -1 -1 6 2.08 -1 -1 40804 -1 -1 194 38 -1 -1 success v8.0.0-3535-ge4ce792ea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-17T19:06:09 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66920 38 304 3256 3560 1 1587 536 16 16 256 clb auto 1.98 10122 1.65 0.01 3.64177 -2138.5 -3.64177 3.64177 0.40 0.00317473 0.00262755 0.578661 0.434442 58 18006 25 1.05632e+07 1.04554e+07 977637. 3818.90 3.81 1.57474 1.25106 15785 16 5100 13564 505628 106920 4.7203 4.7203 -2481.9 -4.7203 0 0 1.24374e+06 4858.37 0.21 0.26 0.211794 0.191547
+k6_frac_N10_40nm.xml tseng.blif common 2.48 -1 -1 7 0.23 -1 -1 34700 -1 -1 34 52 -1 -1 success v8.0.0-3535-ge4ce792ea-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-17T19:06:09 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 31260 52 122 664 786 1 355 208 8 8 64 io clb auto 0.41 1686 0.21 0.00 3.70214 -536.987 -3.70214 3.70214 0.07 0.000641877 0.000544632 0.0739312 0.060713 58 3324 47 1.94018e+06 1.8324e+06 203254. 3175.84 0.73 0.26935 0.22784 2902 11 1075 2671 103928 28289 4.55633 4.55633 -641.099 -4.55633 0 0 258247. 4035.11 0.04 0.07 0.046514 0.0424413
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/func_multiclock/my_script1.sh b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/func_multiclock/my_script1.sh
new file mode 100755
index 00000000000..454c7ccc7a1
--- /dev/null
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/func_multiclock/my_script1.sh
@@ -0,0 +1,29 @@
+#!/bin/bash
+
+RUN_SCRIPT='/home/ahmadi55/vtr-verilog-to-routing/vtr_flow/scripts/run_vtr_task.py'
+PARSE_SCRIPT='/home/ahmadi55/vtr-verilog-to-routing/vtr_flow/scripts/python_libs/vtr/parse_vtr_task.py'
+check='0'
+for top_dir in *;do
+ if [ -d "$top_dir" ]; then
+ echo "outer dir: $top_dir"
+ for inner_dir in $top_dir/*;do
+ if grep -q "config" <<< "$inner_dir";then
+ check=1
+ break
+ fi
+ if grep -q "table_X" <<< "$inner_dir";then
+ check=1
+ continue
+ fi
+ echo "$inner_dir" >>~/Desktop/timing_results1.txt
+ (time $RUN_SCRIPT $inner_dir) >>~/Desktop/run-results_test.txt 2>>~/Desktop/timing_results1_test.txt
+
+ done
+ echo "$outer_dir"
+ if [[ "$check" == "1" ]]; then
+ echo "$top_dir" >>~/Desktop/timing_results1_test.txt
+ (time $RUN_SCRIPT $top_dir) >>~/Desktop/run-results_test.txt 2>>~/Desktop/timing_results1_test.txt
+
+ fi
+ fi
+done
diff --git a/vtr_flow/tasks/func_multiclock/once/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/func_multiclock/once/config/config.txt
similarity index 100%
rename from vtr_flow/tasks/func_multiclock/once/config/config.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/func_multiclock/once/config/config.txt
diff --git a/vtr_flow/tasks/func_multiclock/once/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/func_multiclock/once/config/golden_results.txt
similarity index 100%
rename from vtr_flow/tasks/func_multiclock/once/config/golden_results.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/func_multiclock/once/config/golden_results.txt
diff --git a/vtr_flow/tasks/func_multiclock/vanilla/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/func_multiclock/vanilla/config/config.txt
similarity index 93%
rename from vtr_flow/tasks/func_multiclock/vanilla/config/config.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/func_multiclock/vanilla/config/config.txt
index 36fd176f177..f8a0852037d 100644
--- a/vtr_flow/tasks/func_multiclock/vanilla/config/config.txt
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/func_multiclock/vanilla/config/config.txt
@@ -1,6 +1,7 @@
##############################################
# Configuration file for running experiments
##############################################
+
script_params=-use_odin_simulation
# Path to directory of circuits to use
@@ -24,4 +25,4 @@ parse_file=vpr_standard.txt
qor_parse_file=qor_standard.txt
# Pass requirements
-pass_requirements_file=pass_requirements.txt
\ No newline at end of file
+pass_requirements_file=pass_requirements.txt
diff --git a/vtr_flow/tasks/func_multiclock/vanilla/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/func_multiclock/vanilla/config/golden_results.txt
similarity index 100%
rename from vtr_flow/tasks/func_multiclock/vanilla/config/golden_results.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/func_multiclock/vanilla/config/golden_results.txt
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/task_list.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/task_list.txt
new file mode 100644
index 00000000000..2a63a31ba2b
--- /dev/null
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/task_list.txt
@@ -0,0 +1,14 @@
+regression_tests/vtr_reg_nightly_test2/vtr_reg_netlist_writer
+regression_tests/vtr_reg_nightly_test2/vtr_func_formal
+regression_tests/vtr_reg_nightly_test2/vtr_bidir
+regression_tests/vtr_reg_nightly_test2/vpr_verify_rr_graph
+regression_tests/vtr_reg_nightly_test2/vpr_verify_rr_graph_bidir
+regression_tests/vtr_reg_nightly_test2/vpr_verify_rr_graph_complex_switch
+regression_tests/vtr_reg_nightly_test2/vpr_verify_rr_graph_titan
+regression_tests/vtr_reg_nightly_test2/vpr_verify_rr_graph_error_check
+regression_tests/vtr_reg_nightly_test2/vtr_timing_update_diff
+regression_tests/vtr_reg_nightly_test2/vtr_timing_update_diff_titan
+regression_tests/vtr_reg_nightly_test2/func_multiclock/multiclock_mcnc
+regression_tests/vtr_reg_nightly_test2/titan_other
+regression_tests/vtr_reg_nightly_test2/titan_quick_qor
+
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/titan_other/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/titan_other/config/config.txt
similarity index 100%
rename from vtr_flow/tasks/regression_tests/vtr_reg_nightly/titan_other/config/config.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/titan_other/config/config.txt
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/titan_other/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/titan_other/config/golden_results.txt
similarity index 100%
rename from vtr_flow/tasks/regression_tests/vtr_reg_nightly/titan_other/config/golden_results.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/titan_other/config/golden_results.txt
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/titan_quick_qor/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/titan_quick_qor/config/config.txt
similarity index 100%
rename from vtr_flow/tasks/regression_tests/vtr_reg_nightly/titan_quick_qor/config/config.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/titan_quick_qor/config/config.txt
index dce672e8b8c..02b7620d5c4 100644
--- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/titan_quick_qor/config/config.txt
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/titan_quick_qor/config/config.txt
@@ -22,19 +22,6 @@ archs_dir=arch/titan
#Largest benchmarks, excluded
#circuit_list_add=gaussianblur_stratixiv_arch_timing.blif
-#Large benchmarks
-circuit_list_add=directrf_stratixiv_arch_timing.blif
-circuit_list_add=bitcoin_miner_stratixiv_arch_timing.blif
-circuit_list_add=LU230_stratixiv_arch_timing.blif
-circuit_list_add=sparcT1_chip2_stratixiv_arch_timing.blif
-circuit_list_add=LU_Network_stratixiv_arch_timing.blif
-
-#Small benchmarks
-circuit_list_add=neuron_stratixiv_arch_timing.blif
-circuit_list_add=sparcT1_core_stratixiv_arch_timing.blif
-circuit_list_add=stereo_vision_stratixiv_arch_timing.blif
-circuit_list_add=cholesky_mc_stratixiv_arch_timing.blif
-
#Mixed order of large and small
circuit_list_add=gsm_switch_stratixiv_arch_timing.blif
circuit_list_add=mes_noc_stratixiv_arch_timing.blif
@@ -50,6 +37,19 @@ circuit_list_add=segmentation_stratixiv_arch_timing.blif
circuit_list_add=SLAM_spheric_stratixiv_arch_timing.blif
circuit_list_add=des90_stratixiv_arch_timing.blif
+#Small benchmarks
+circuit_list_add=neuron_stratixiv_arch_timing.blif
+circuit_list_add=sparcT1_core_stratixiv_arch_timing.blif
+circuit_list_add=stereo_vision_stratixiv_arch_timing.blif
+circuit_list_add=cholesky_mc_stratixiv_arch_timing.blif
+
+#Large benchmarks
+circuit_list_add=directrf_stratixiv_arch_timing.blif
+circuit_list_add=bitcoin_miner_stratixiv_arch_timing.blif
+circuit_list_add=LU230_stratixiv_arch_timing.blif
+circuit_list_add=sparcT1_chip2_stratixiv_arch_timing.blif
+circuit_list_add=LU_Network_stratixiv_arch_timing.blif
+
# Add architectures to list to sweep
arch_list_add=stratixiv_arch.timing.xml
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/titan_quick_qor/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/titan_quick_qor/config/golden_results.txt
similarity index 100%
rename from vtr_flow/tasks/regression_tests/vtr_reg_nightly/titan_quick_qor/config/golden_results.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/titan_quick_qor/config/golden_results.txt
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vpr_verify_rr_graph/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vpr_verify_rr_graph/config/config.txt
similarity index 100%
rename from vtr_flow/tasks/regression_tests/vtr_reg_nightly/vpr_verify_rr_graph/config/config.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vpr_verify_rr_graph/config/config.txt
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vpr_verify_rr_graph/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vpr_verify_rr_graph/config/golden_results.txt
similarity index 100%
rename from vtr_flow/tasks/regression_tests/vtr_reg_nightly/vpr_verify_rr_graph/config/golden_results.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vpr_verify_rr_graph/config/golden_results.txt
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vpr_verify_rr_graph_bidir/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vpr_verify_rr_graph_bidir/config/config.txt
similarity index 100%
rename from vtr_flow/tasks/regression_tests/vtr_reg_nightly/vpr_verify_rr_graph_bidir/config/config.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vpr_verify_rr_graph_bidir/config/config.txt
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vpr_verify_rr_graph_bidir/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vpr_verify_rr_graph_bidir/config/golden_results.txt
similarity index 100%
rename from vtr_flow/tasks/regression_tests/vtr_reg_nightly/vpr_verify_rr_graph_bidir/config/golden_results.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vpr_verify_rr_graph_bidir/config/golden_results.txt
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vpr_verify_rr_graph_complex_switch/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vpr_verify_rr_graph_complex_switch/config/config.txt
similarity index 100%
rename from vtr_flow/tasks/regression_tests/vtr_reg_nightly/vpr_verify_rr_graph_complex_switch/config/config.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vpr_verify_rr_graph_complex_switch/config/config.txt
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vpr_verify_rr_graph_complex_switch/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vpr_verify_rr_graph_complex_switch/config/golden_results.txt
similarity index 100%
rename from vtr_flow/tasks/regression_tests/vtr_reg_nightly/vpr_verify_rr_graph_complex_switch/config/golden_results.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vpr_verify_rr_graph_complex_switch/config/golden_results.txt
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vpr_verify_rr_graph_error_check/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vpr_verify_rr_graph_error_check/config/config.txt
similarity index 100%
rename from vtr_flow/tasks/regression_tests/vtr_reg_nightly/vpr_verify_rr_graph_error_check/config/config.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vpr_verify_rr_graph_error_check/config/config.txt
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vpr_verify_rr_graph_error_check/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vpr_verify_rr_graph_error_check/config/golden_results.txt
similarity index 100%
rename from vtr_flow/tasks/regression_tests/vtr_reg_nightly/vpr_verify_rr_graph_error_check/config/golden_results.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vpr_verify_rr_graph_error_check/config/golden_results.txt
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vpr_verify_rr_graph_titan/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vpr_verify_rr_graph_titan/config/config.txt
similarity index 100%
rename from vtr_flow/tasks/regression_tests/vtr_reg_nightly/vpr_verify_rr_graph_titan/config/config.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vpr_verify_rr_graph_titan/config/config.txt
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vpr_verify_rr_graph_titan/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vpr_verify_rr_graph_titan/config/golden_results.txt
similarity index 100%
rename from vtr_flow/tasks/regression_tests/vtr_reg_nightly/vpr_verify_rr_graph_titan/config/golden_results.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vpr_verify_rr_graph_titan/config/golden_results.txt
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_bidir/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_bidir/config/config.txt
similarity index 100%
rename from vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_bidir/config/config.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_bidir/config/config.txt
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_bidir/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_bidir/config/golden_results.txt
similarity index 100%
rename from vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_bidir/config/golden_results.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_bidir/config/golden_results.txt
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_func_formal/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_func_formal/config/config.txt
similarity index 100%
rename from vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_func_formal/config/config.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_func_formal/config/config.txt
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_func_formal/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_func_formal/config/golden_results.txt
similarity index 100%
rename from vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_func_formal/config/golden_results.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_func_formal/config/golden_results.txt
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_reg_netlist_writer/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_reg_netlist_writer/config/config.txt
similarity index 100%
rename from vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_reg_netlist_writer/config/config.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_reg_netlist_writer/config/config.txt
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_reg_netlist_writer/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_reg_netlist_writer/config/golden_results.txt
similarity index 100%
rename from vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_reg_netlist_writer/config/golden_results.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_reg_netlist_writer/config/golden_results.txt
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_timing_update_diff/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_timing_update_diff/config/config.txt
similarity index 100%
rename from vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_timing_update_diff/config/config.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_timing_update_diff/config/config.txt
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_timing_update_diff/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_timing_update_diff/config/golden_results.txt
similarity index 100%
rename from vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_timing_update_diff/config/golden_results.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_timing_update_diff/config/golden_results.txt
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_timing_update_diff_titan/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_timing_update_diff_titan/config/config.txt
similarity index 100%
rename from vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_timing_update_diff_titan/config/config.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_timing_update_diff_titan/config/config.txt
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_timing_update_diff_titan/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_timing_update_diff_titan/config/golden_results.txt
similarity index 100%
rename from vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_timing_update_diff_titan/config/golden_results.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2/vtr_timing_update_diff_titan/config/golden_results.txt
diff --git a/vtr_flow/tasks/timing_chain/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/complex_switch/config/config.txt
similarity index 67%
rename from vtr_flow/tasks/timing_chain/config/config.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/complex_switch/config/config.txt
index 8b026d7c07e..4d43c00bf52 100644
--- a/vtr_flow/tasks/timing_chain/config/config.txt
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/complex_switch/config/config.txt
@@ -7,22 +7,14 @@
circuits_dir=benchmarks/verilog
# Path to directory of architectures to use
-archs_dir=arch/timing
+archs_dir=arch/complex_switch
# Add circuits to list to sweep
-circuit_list_add=arm_core.v
circuit_list_add=bgm.v
circuit_list_add=blob_merge.v
circuit_list_add=boundtop.v
-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=LU64PEEng.v
-circuit_list_add=mcml.v
circuit_list_add=mkDelayWorker32B.v
-circuit_list_add=mkPktMerge.v
circuit_list_add=mkSMAdapter4B.v
circuit_list_add=or1200.v
circuit_list_add=raygentop.v
@@ -30,16 +22,20 @@ circuit_list_add=sha.v
circuit_list_add=stereovision0.v
circuit_list_add=stereovision1.v
circuit_list_add=stereovision2.v
-circuit_list_add=stereovision3.v
+circuit_list_add=LU32PEEng.v
+circuit_list_add=mcml.v
# Add architectures to list to sweep
-arch_list_add=k6_frac_N10_frac_chain_mem32K_40nm.xml
+arch_list_add=k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml
# Parse info and how to parse
-parse_file=vpr_chain.txt
+parse_file=vpr_fixed_chan_width.txt
+
+# How to parse QoR info
+qor_parse_file=qor_fixed_chan_width.txt
# Pass requirements
-pass_requirements_file=pass_requirements_chain.txt
+pass_requirements_file=pass_requirements_fixed_chan_width.txt
-script_params=-lut_size 6
+script_params=-track_memory_usage --route_chan_width 200
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/complex_switch/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/complex_switch/config/golden_results.txt
new file mode 100644
index 00000000000..6ca50b206f7
--- /dev/null
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/complex_switch/config/golden_results.txt
@@ -0,0 +1,15 @@
+ 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 routed_wirelength total_nets_routed total_connections_routed total_heap_pushes total_heap_pops logic_block_area_total logic_block_area_used routing_area_total routing_area_per_tile crit_path_route_success_iteration critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time router_lookahead_computation_time
+ k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml bgm.v common 771.69 20.24 392552 33 440.50 -1 -1 152620 -1 -1 5518 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 848880 257 32 44336 43851 1 42630 5818 80 80 6400 clb auto 8.01 380622 169.43 1.19 11.7092 -17497.4 -11.7092 11.7092 1.71 0.0884606 0.0650463 10.8219 7.9193 629302 -1 -1 -1 -1 3.53436e+07 2.2827e+07 7.29424e+07 11397.2 22 13.5217 13.5217 -20134.9 -13.5217 0 0 34.01 16.0006 12.1513 68.04
+ k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml blob_merge.v common 112.77 0.46 59268 29 71.86 -1 -1 67792 -1 -1 1320 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 235260 36 100 10431 10531 1 9865 1456 41 41 1681 clb auto 1.25 86784 13.51 0.10 8.5404 -2112.82 -8.5404 8.5404 0.35 0.0158736 0.0138493 2.41144 1.78231 133541 -1 -1 -1 -1 8.95136e+06 5.148e+06 1.84779e+07 10992.2 17 9.80674 9.80674 -2510.99 -9.80674 0 0 4.16 3.39286 2.6091 13.69
+ k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml boundtop.v common 3.66 0.68 46848 3 0.36 -1 -1 37188 -1 -1 95 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 67744 114 192 467 659 1 374 401 13 13 169 clb auto 0.04 939 0.40 0.00 0.936379 -133.58 -0.936379 0.936379 0.01 0.000594977 0.000532766 0.098618 0.0869176 1418 -1 -1 -1 -1 666600 370500 1.59550e+06 9440.85 10 1.2773 1.2773 -158.922 -1.2773 0 0 0.05 0.115571 0.102519 0.59
+ k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml LU8PEEng.v common 566.38 18.49 226892 206 237.61 -1 -1 99564 -1 -1 4460 114 83 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 874692 114 102 38946 38672 1 36247 4767 86 86 7396 memory auto 7.46 361378 138.53 0.85 64.8355 -42040.9 -64.8355 64.8355 2.10 0.0691949 0.058838 11.7896 8.69223 512938 -1 -1 -1 -1 4.18276e+07 2.52125e+07 8.44414e+07 11417.2 22 72.5688 72.5688 -74126.1 -72.5688 -91.783 -0.36083 52.67 16.6473 12.5492 81.25
+ k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml mkDelayWorker32B.v common 103.59 0.85 78184 6 7.33 -1 -1 52456 -1 -1 556 506 80 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 584556 506 553 3331 3884 1 3325 1695 82 82 6724 memory auto 1.27 19665 5.42 0.03 5.41315 -1403.25 -5.41315 5.41315 1.74 0.0117211 0.0106427 2.59157 2.32237 22244 -1 -1 -1 -1 3.85878e+07 8.78824e+06 7.66484e+07 11399.2 22 5.80412 5.80412 -1685.69 -5.80412 -22.0148 -0.295672 2.05 3.23264 2.91985 69.61
+ k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml mkSMAdapter4B.v common 23.03 0.25 31836 11 2.59 -1 -1 37612 -1 -1 290 193 10 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 144644 193 205 2764 2969 1 2139 698 37 37 1369 memory auto 0.35 15446 2.92 0.02 3.89872 -2235.27 -3.89872 3.89872 0.25 0.00337253 0.00287862 0.74301 0.58971 23806 -1 -1 -1 -1 7.45627e+06 1.95848e+06 1.49196e+07 10898.2 17 4.18699 4.18699 -2538.95 -4.18699 -21.4015 -0.375057 1.04 0.930111 0.754237 11.96
+ k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml or1200.v common 23.89 0.51 40752 45 4.81 -1 -1 43800 -1 -1 537 385 4 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 124740 385 394 5238 5569 1 4569 1321 27 27 729 io clb auto 0.76 44444 6.09 0.05 12.7514 -9719.77 -12.7514 12.7514 0.12 0.00857623 0.00773889 1.35067 1.06773 64764 -1 -1 -1 -1 4.06709e+06 2.54409e+06 7.75339e+06 10635.7 18 13.7756 13.7756 -11602 -13.7756 0 0 2.19 1.81771 1.48902 5.94
+ k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml raygentop.v common 13.70 0.39 32764 12 1.53 -1 -1 37312 -1 -1 238 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 103668 214 305 2927 3043 1 2181 766 26 26 676 mult_36 auto 0.39 16418 1.91 0.02 3.92422 -1914.18 -3.92422 3.92422 0.10 0.00342281 0.00303294 0.462853 0.392242 24730 -1 -1 -1 -1 3.88769e+06 1.9974e+06 7.17610e+06 10615.5 17 4.06116 4.06116 -2255.58 -4.06116 0 0 1.55 0.651302 0.564926 5.24
+ k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml sha.v common 488.98 0.94 38088 31 474.19 -1 -1 95480 -1 -1 415 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 95616 38 36 4183 4219 1 3300 489 24 24 576 clb auto 0.50 25354 2.63 0.02 9.82213 -3175.08 -9.82213 9.82213 0.08 0.0050131 0.00345827 0.628781 0.44583 42061 -1 -1 -1 -1 2.72374e+06 1.6185e+06 6.03346e+06 10474.8 21 11.2064 11.2064 -3705.85 -11.2064 0 0 1.38 0.920023 0.691661 3.63
+ k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml stereovision0.v common 152.42 1.63 121828 7 97.58 -1 -1 75204 -1 -1 1804 157 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 340568 157 197 22240 22437 1 13748 2158 47 47 2209 clb auto 2.06 84220 16.98 0.13 2.22026 -8656.91 -2.22026 2.22026 0.48 0.0191037 0.0160881 2.79218 2.11565 117937 -1 -1 -1 -1 1.16296e+07 7.0356e+06 2.45588e+07 11117.6 20 2.72481 2.72481 -10955.7 -2.72481 0 0 4.12 4.11575 3.25302 19.70
+ k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml stereovision1.v common 141.02 2.33 108996 10 55.12 -1 -1 78708 -1 -1 1727 113 0 44 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 480632 113 145 23279 21144 1 16131 2029 62 62 3844 mult_36 auto 2.47 135603 19.55 0.15 4.15694 -16481.2 -4.15694 4.15694 0.88 0.0213202 0.0181428 3.16265 2.42147 178625 -1 -1 -1 -1 2.17057e+07 1.19625e+07 4.33614e+07 11280.3 14 4.46736 4.46736 -20025.7 -4.46736 0 0 9.64 4.2939 3.4091 37.10
+ k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml stereovision2.v common 1003.65 2.70 163904 26 344.30 -1 -1 188664 -1 -1 5847 149 0 324 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 2591312 149 182 65520 55100 1 55662 6502 166 166 27556 mult_36 auto 10.40 721467 179.24 1.19 13.2018 -50280.1 -13.2018 13.2018 11.08 0.102265 0.0905384 15.6935 12.4259 869347 -1 -1 -1 -1 1.58074e+08 6.12945e+07 3.19849e+08 11607.2 22 14.654 14.654 -65353.5 -14.654 0 0 35.41 22.203 17.9278 346.46
+ k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml LU32PEEng.v common 3161.92 157.33 768196 205 1310.65 -1 -1 298852 -1 -1 15736 114 299 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 3164280 114 102 136917 135515 1 128781 16283 169 169 28561 memory auto 32.19 1655811 1017.28 5.91 64.0741 -218355 -64.0741 64.0741 11.18 0.336885 0.247795 47.9577 35.3901 2154289 -1 -1 -1 -1 1.64515e+08 8.9937e+07 3.31299e+08 11599.7 23 72.8832 72.8832 -433622 -72.8832 -167.502 -0.303936 187.56 67.6975 51.0865 334.60
+ k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm.xml mcml.v common 11498.30 61.50 955832 124 10245.21 -1 -1 448108 -1 -1 12904 36 318 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 3031436 36 33 149539 147997 1 103102 13318 169 169 28561 memory auto 30.81 1295530 594.14 3.44 55.8928 -206808 -55.8928 55.8928 11.53 0.211047 0.178323 35.255 27.2243 1245163 -1 -1 -1 -1 1.64515e+08 7.98601e+07 3.31299e+08 11599.7 23 60.1743 60.1743 -330799 -60.1743 -0.4572 -0.188293 76.96 48.8242 38.3795 361.41
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/task_list.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/task_list.txt
new file mode 100644
index 00000000000..5a58cab89f2
--- /dev/null
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/task_list.txt
@@ -0,0 +1,7 @@
+regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain
+regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain_depop
+regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain_predictor_off
+regression_tests/vtr_reg_nightly_test3/vtr_reg_qor
+regression_tests/vtr_reg_nightly_test3/complex_switch
+
+
diff --git a/vtr_flow/tasks/timing/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor/config/config.txt
similarity index 95%
rename from vtr_flow/tasks/timing/config/config.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor/config/config.txt
index d5b3985d02a..59f086f1d79 100644
--- a/vtr_flow/tasks/timing/config/config.txt
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor/config/config.txt
@@ -17,10 +17,7 @@ circuit_list_add=boundtop.v
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=LU64PEEng.v
-circuit_list_add=mcml.v
circuit_list_add=mkDelayWorker32B.v
circuit_list_add=mkPktMerge.v
circuit_list_add=mkSMAdapter4B.v
@@ -31,6 +28,9 @@ circuit_list_add=stereovision0.v
circuit_list_add=stereovision1.v
circuit_list_add=stereovision2.v
circuit_list_add=stereovision3.v
+circuit_list_add=LU8PEEng.v
+circuit_list_add=LU32PEEng.v
+circuit_list_add=mcml.v
# Add architectures to list to sweep
arch_list_add=k6_frac_N10_mem32K_40nm.xml
@@ -38,6 +38,9 @@ arch_list_add=k6_frac_N10_mem32K_40nm.xml
# Parse info and how to parse
parse_file=vpr_chain.txt
+# How to parse QoR info
+qor_parse_file=qor_standard.txt
+
# Pass requirements
pass_requirements_file=pass_requirements_chain.txt
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
new file mode 100644
index 00000000000..f1f228d55d4
--- /dev/null
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor/config/golden_results.txt
@@ -0,0 +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 255.68 1.48 127404 25 73.28 -1 -1 66348 -1 -1 979 133 24 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 286980 133 179 17305 17484 1 8665 1315 39 39 1521 clb auto 11.46 141361 14.31 0.10 16.6835 -152417 -16.6835 16.6835 3.76 0.0254421 0.0209547 4.29524 3.01932 106 203023 32 8.65315e+07 6.59154e+07 1.02796e+07 6758.45 101.60 15.0753 11.5233 183893 17 36068 136455 30169818 7067245 18.9861 18.9861 -166921 -18.9861 0 0 1.30216e+07 8561.22 3.34 7.62 1.84488 1.57094 9206 12062 -1 -1 -1 -1
+ k6_frac_N10_mem32K_40nm.xml bgm.v common 722.13 21.28 392668 22 429.60 -1 -1 152648 -1 -1 2624 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 683308 257 32 32168 31683 1 18612 2924 62 62 3844 clb auto 31.49 246219 62.28 0.45 15.0101 -22015.9 -15.0101 15.0101 28.45 0.073163 0.0528857 9.25897 6.7654 76 389448 28 2.30929e+08 1.45776e+08 1.99380e+07 5186.80 94.74 26.5236 20.6384 368061 19 98103 447192 25878852 4108900 17.6559 17.6559 -25160.6 -17.6559 0 0 2.49294e+07 6485.27 6.68 10.41 4.87611 4.14003 23841 26295 -1 -1 -1 -1
+ k6_frac_N10_mem32K_40nm.xml blob_merge.v common 116.47 0.45 59436 18 72.79 -1 -1 67928 -1 -1 572 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 150248 36 100 6600 6700 1 2804 708 30 30 900 clb auto 4.47 45694 4.97 0.03 8.87513 -2477.07 -8.87513 8.87513 1.98 0.01038 0.00880422 1.77278 1.25459 64 70823 35 4.8774e+07 3.08274e+07 3.87092e+06 4301.02 21.21 5.03201 3.98243 65611 14 12583 64672 2970985 387175 10.3373 10.3373 -2797.46 -10.3373 0 0 4.83441e+06 5371.56 1.17 1.24 0.697948 0.620329 4999 5961 -1 -1 -1 -1
+ k6_frac_N10_mem32K_40nm.xml boundtop.v common 4.10 0.71 46992 2 0.38 -1 -1 37152 -1 -1 82 114 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66528 114 192 455 647 1 312 388 13 13 169 clb auto 0.10 758 0.34 0.00 1.70835 -203.113 -1.70835 1.70835 0.22 0.000587763 0.000521508 0.0974554 0.0855581 36 2211 20 6.63067e+06 4.41931e+06 367804. 2176.36 0.63 0.267535 0.240387 1762 13 705 924 61330 17686 2.27648 2.27648 -247.759 -2.27648 0 0 456028. 2698.39 0.08 0.04 0.0224819 0.020933 181 175 -1 -1 -1 -1
+ k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common 2.14 0.05 9352 3 0.18 -1 -1 36176 -1 -1 65 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 67784 99 130 363 493 1 251 295 12 12 144 clb auto 0.08 605 0.25 0.00 2.08915 -200.578 -2.08915 2.08915 0.18 0.000424973 0.000370344 0.0722755 0.062335 40 1472 11 5.66058e+06 4.05111e+06 333335. 2314.82 0.44 0.166899 0.147623 1328 8 606 783 65360 21967 2.65439 2.65439 -236.142 -2.65439 0 0 419432. 2912.72 0.07 0.03 0.0133179 0.0123701 132 124 -1 -1 -1 -1
+ k6_frac_N10_mem32K_40nm.xml diffeq1.v common 6.60 0.04 9120 15 0.33 -1 -1 34592 -1 -1 36 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 70428 162 96 999 932 1 693 299 16 16 256 mult_36 auto 0.24 5304 0.51 0.01 19.7038 -1798.95 -19.7038 19.7038 0.38 0.00157542 0.00142445 0.220203 0.197523 50 11871 38 1.21132e+07 3.92018e+06 780512. 3048.87 3.38 0.702209 0.639391 9626 16 2981 5809 1451038 374154 22.7334 22.7334 -2024.41 -22.7334 0 0 1.00276e+06 3917.05 0.17 0.26 0.0798227 0.0747324 342 474 -1 -1 -1 -1
+ k6_frac_N10_mem32K_40nm.xml diffeq2.v common 7.21 0.03 8272 14 0.22 -1 -1 33504 -1 -1 29 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 70372 66 96 719 590 1 525 198 18 18 324 mult_36 auto 0.20 4790 0.42 0.00 15.3213 -871.24 -15.3213 15.3213 0.53 0.00142258 0.00131792 0.213241 0.194395 38 11682 25 1.57076e+07 4.33493e+06 803540. 2480.06 3.62 0.608828 0.560131 9918 19 2890 6341 2431166 578423 18.1641 18.1641 -1024.59 -18.1641 0 0 1.01953e+06 3146.70 0.24 0.54 0.122003 0.115066 246 323 -1 -1 -1 -1
+ k6_frac_N10_mem32K_40nm.xml mkDelayWorker32B.v common 59.22 0.83 78924 5 6.63 -1 -1 52444 -1 -1 456 506 47 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 319148 506 553 3285 3838 1 3022 1562 50 50 2500 memory auto 2.96 13844 5.04 0.03 5.95267 -1737.1 -5.95267 5.95267 17.66 0.0118126 0.0103652 2.55061 2.28117 38 21834 15 1.47946e+08 5.03323e+07 6.86584e+06 2746.33 12.72 5.35924 4.88777 20620 16 4027 5047 3622996 886535 6.85724 6.85724 -2206.18 -6.85724 -7.78106 -0.293253 8.69095e+06 3476.38 2.35 1.11 0.541692 0.509102 1053 407 -1 -1 -1 -1
+ k6_frac_N10_mem32K_40nm.xml mkPktMerge.v common 10.90 0.10 17112 2 0.07 -1 -1 33768 -1 -1 27 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 91464 311 156 972 1128 1 953 509 28 28 784 memory auto 0.35 7827 0.88 0.01 3.90797 -4026.08 -3.90797 3.90797 1.69 0.00260608 0.00221904 0.376442 0.316511 36 14479 14 4.25198e+07 9.67514e+06 1.94918e+06 2486.20 4.11 0.987651 0.859981 13472 13 2891 3230 2215365 647096 4.52093 4.52093 -4789.05 -4.52093 -25.8456 -0.339827 2.40571e+06 3068.51 0.56 0.46 0.104786 0.0955396 109 172 -1 -1 -1 -1
+ k6_frac_N10_mem32K_40nm.xml mkSMAdapter4B.v common 13.21 0.25 32032 7 2.50 -1 -1 37964 -1 -1 170 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 86760 193 205 2232 2437 1 1192 573 20 20 400 memory auto 1.14 8897 1.55 0.01 4.45635 -2582.59 -4.45635 4.45635 0.69 0.00304757 0.0023932 0.559867 0.451892 50 16509 33 2.07112e+07 1.1902e+07 1.26944e+06 3173.59 3.96 1.40855 1.18759 14652 14 4258 10254 923060 226299 5.19652 5.19652 -3027.67 -5.19652 -5.64945 -0.341744 1.63222e+06 4080.54 0.30 0.29 0.157471 0.145239 992 1183 -1 -1 -1 -1
+ k6_frac_N10_mem32K_40nm.xml or1200.v common 45.32 0.43 40936 27 4.85 -1 -1 43980 -1 -1 254 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 108276 385 394 3979 4310 1 2380 1036 27 27 729 io auto 2.79 32239 3.72 0.03 13.0151 -11494.2 -13.0151 13.0151 1.60 0.00722842 0.00641284 1.18302 0.977425 76 53278 33 3.93038e+07 1.51811e+07 3.58343e+06 4915.54 25.09 3.43543 2.98034 47028 16 10623 38195 3911075 744236 14.7237 14.7237 -13187.9 -14.7237 0 0 4.48127e+06 6147.14 1.00 1.08 0.419843 0.385341 2290 2782 -1 -1 -1 -1
+ k6_frac_N10_mem32K_40nm.xml raygentop.v common 19.26 0.34 32992 8 1.39 -1 -1 40580 -1 -1 104 214 0 9 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 89292 214 305 2625 2741 1 1440 632 22 22 484 mult_36 auto 1.55 11858 1.26 0.01 4.2149 -2326.88 -4.2149 4.2149 0.90 0.00320048 0.00282062 0.449556 0.38649 50 27613 37 2.50602e+07 9.16898e+06 1.56759e+06 3238.82 9.84 1.41439 1.24776 21526 18 6421 14585 3598061 779432 4.73537 4.73537 -3011.83 -4.73537 0 0 2.01671e+06 4166.75 0.38 0.67 0.197503 0.182965 907 1153 -1 -1 -1 -1
+ k6_frac_N10_mem32K_40nm.xml sha.v common 509.88 0.74 38160 20 489.55 -1 -1 95376 -1 -1 208 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 99132 38 36 3404 3440 1 1290 282 19 19 361 clb auto 1.70 13833 1.29 0.01 11.3756 -4060.62 -11.3756 11.3756 0.61 0.00378694 0.00319439 0.530398 0.396903 56 23225 39 1.72706e+07 1.121e+07 1.27879e+06 3542.35 9.01 1.89694 1.53034 20487 17 5327 19874 693200 118538 13.9599 13.9599 -4596.68 -13.9599 0 0 1.63234e+06 4521.70 0.28 0.39 0.267423 0.237982 2026 2480 -1 -1 -1 -1
+ k6_frac_N10_mem32K_40nm.xml stereovision0.v common 140.84 1.50 122064 5 92.52 -1 -1 75212 -1 -1 744 157 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 247784 157 197 21024 21221 1 6987 1098 34 34 1156 clb auto 6.49 46419 6.37 0.05 2.82568 -12604 -2.82568 2.82568 2.67 0.0165799 0.0134665 2.54385 1.92206 52 73212 43 6.50233e+07 4.00974e+07 4.04437e+06 3498.59 17.38 7.95666 6.35335 65366 14 19246 32302 1362296 259411 3.20194 3.20194 -14793.7 -3.20194 0 0 5.32397e+06 4605.51 1.22 1.23 1.09056 0.984477 6997 9532 -1 -1 -1 -1
+ k6_frac_N10_mem32K_40nm.xml stereovision1.v common 180.82 2.16 109124 6 54.89 -1 -1 78740 -1 -1 761 113 0 44 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 307052 113 145 21818 19683 1 9787 1063 40 40 1600 mult_36 auto 7.48 85270 8.77 0.07 5.22041 -22246.3 -5.22041 5.22041 3.87 0.0210482 0.0152255 3.16878 2.35576 80 133607 44 9.16046e+07 5.84383e+07 8.41679e+06 5260.49 80.59 11.7169 9.44018 121434 14 30149 50085 21046263 4281969 5.57068 5.57068 -25174.1 -5.57068 0 0 1.06125e+07 6632.80 3.20 4.66 1.28018 1.14993 7407 9170 -1 -1 -1 -1
+ k6_frac_N10_mem32K_40nm.xml stereovision2.v common 897.38 2.29 163944 17 365.23 -1 -1 188704 -1 -1 2285 149 0 324 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 1517848 149 182 57159 46739 1 35655 2940 104 104 10816 mult_36 auto 27.76 451074 64.50 0.34 17.6426 -61785.4 -17.6426 17.6426 92.84 0.100465 0.0794607 14.3589 11.5035 70 613267 31 6.67561e+08 2.51439e+08 5.35869e+07 4954.41 245.65 37.6616 31.3652 571390 14 120311 203530 42045578 8585896 19.4369 19.4369 -72495.7 -19.4369 0 0 6.74310e+07 6234.38 21.69 12.60 4.9889 4.47075 21927 28492 -1 -1 -1 -1
+ k6_frac_N10_mem32K_40nm.xml stereovision3.v common 1.56 0.06 9696 4 0.10 -1 -1 33008 -1 -1 13 11 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 64440 11 30 262 292 2 110 54 7 7 49 clb auto 0.09 348 0.06 0.00 2.24517 -154.275 -2.24517 2.08568 0.04 0.000309725 0.000253058 0.0364888 0.0291824 30 985 35 1.07788e+06 700622 77118.5 1573.85 0.32 0.130356 0.106775 718 11 379 582 25764 8842 2.56549 2.31105 -184.613 -2.56549 0 0 95414.1 1947.23 0.01 0.02 0.0142156 0.0127868 100 149 -1 -1 -1 -1
+ k6_frac_N10_mem32K_40nm.xml LU8PEEng.v common 701.75 19.08 227572 129 250.46 -1 -1 100908 -1 -1 2010 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 582060 114 102 29578 29304 1 15347 2278 54 54 2916 clb auto 28.05 221461 35.17 0.24 71.8736 -53930.2 -71.8736 71.8736 19.22 0.0531899 0.0448971 8.1004 5.97275 92 336935 48 1.70873e+08 1.35611e+08 1.77525e+07 6087.96 302.42 30.7472 23.9288 303826 18 61022 244114 36691481 7210279 81.5132 81.5132 -67282.9 -81.5132 -13.076 -0.172573 2.25674e+07 7739.16 6.59 11.19 3.88633 3.25067 18822 21469 -1 -1 -1 -1
+ k6_frac_N10_mem32K_40nm.xml LU32PEEng.v common 6591.72 171.14 770456 128 1295.71 -1 -1 298652 -1 -1 7148 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 1935556 114 102 102506 101104 1 53933 7563 100 100 10000 clb auto 111.89 1071446 402.64 2.22 70.431 -335083 -70.431 70.431 84.33 0.244124 0.205221 38.6299 29.1065 130 1413041 49 6.13558e+08 4.89384e+08 8.42269e+07 8422.69 4276.21 123.739 97.1904 1339131 17 201056 864744 264365622 66736099 80.9022 80.9022 -471894 -80.9022 -18.7674 -0.174787 1.06720e+08 10672.0 39.10 93.87 15.3636 12.9703 67544 75921 -1 -1 -1 -1
+ k6_frac_N10_mem32K_40nm.xml mcml.v common 9471.77 58.17 954224 75 8089.65 -1 -1 447736 -1 -1 5471 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 1777584 36 33 134466 132924 1 39621 5726 92 92 8464 memory auto 60.91 461290 211.90 1.43 59.9576 -267814 -59.9576 59.9576 72.62 0.241895 0.199789 35.8385 27.4086 86 665760 47 5.19428e+08 3.92651e+08 4.94424e+07 5841.49 818.94 123.573 99.3805 621808 20 143897 442932 81621596 18954953 65.7645 65.7645 -385403 -65.7645 -0.298423 -0.0270824 6.25744e+07 7393.01 17.11 28.95 14.0116 12.2481 52921 82783 -1 -1 -1 -1
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_reg_qor_chain/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain/config/config.txt
similarity index 100%
rename from vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_reg_qor_chain/config/config.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain/config/config.txt
index e69c169c2ed..a95d6d618c4 100755
--- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_reg_qor_chain/config/config.txt
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain/config/config.txt
@@ -17,9 +17,6 @@ circuit_list_add=boundtop.v
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
@@ -31,6 +28,9 @@ circuit_list_add=stereovision0.v
circuit_list_add=stereovision1.v
circuit_list_add=stereovision2.v
circuit_list_add=stereovision3.v
+circuit_list_add=LU8PEEng.v
+circuit_list_add=LU32PEEng.v
+circuit_list_add=mcml.v
# Add architectures to list to sweep
arch_list_add=k6_frac_N10_frac_chain_mem32K_40nm.xml
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
new file mode 100644
index 00000000000..924fa1896a7
--- /dev/null
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain/config/golden_results.txt
@@ -0,0 +1,22 @@
+ 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
+ k6_frac_N10_frac_chain_mem32K_40nm.xml arm_core.v common 262.46 1.47 127248 18 72.96 -1 -1 66864 -1 -1 1008 133 24 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 316396 133 179 18339 18121 1 9040 1344 39 39 1521 clb auto 21.70 138925 15.95 0.10 17.3291 -132913 -17.3291 17.3291 3.86 0.0288542 0.0238943 4.81648 3.51316 106 195650 27 8.65315e+07 6.74784e+07 1.02794e+07 6758.33 97.84 16.215 12.6909 182348 15 34912 125847 27216363 6482638 19.2483 19.2483 -152788 -19.2483 0 0 1.30215e+07 8561.12 3.42 7.08 1.92621 1.67433
+ k6_frac_N10_frac_chain_mem32K_40nm.xml bgm.v common 598.74 13.19 388948 15 242.79 -1 -1 147364 -1 -1 2712 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 758148 257 32 35908 33296 1 19534 3012 63 63 3969 clb auto 56.01 255913 65.48 0.43 18.1917 -23818.8 -18.1917 18.1917 30.40 0.0630532 0.0540353 9.80952 7.11497 80 392154 29 2.36641e+08 1.50518e+08 2.15027e+07 5417.67 132.15 34.8362 26.9502 366453 20 88192 390830 20471535 3157944 20.5117 20.5117 -26441.9 -20.5117 0 0 2.71248e+07 6834.16 7.42 9.28 4.96389 4.28045
+ k6_frac_N10_frac_chain_mem32K_40nm.xml blob_merge.v common 98.46 0.44 55336 5 41.42 -1 -1 59452 -1 -1 619 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 187724 36 100 14037 11284 1 3230 755 31 31 961 clb auto 14.20 45897 5.99 0.04 13.3428 -2596.7 -13.3428 13.3428 2.24 0.0138176 0.0114936 2.28377 1.65722 60 76713 48 5.14688e+07 3.33604e+07 3.85800e+06 4014.56 22.54 5.92607 4.56216 66475 13 12384 59651 2545727 332961 15.3759 15.3759 -2979.2 -15.3759 0 0 4.86014e+06 5057.38 0.94 1.19 0.781403 0.676632
+ k6_frac_N10_frac_chain_mem32K_40nm.xml boundtop.v common 5.56 0.50 45120 3 0.40 -1 -1 37732 -1 -1 93 142 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 73404 142 192 1069 1139 1 566 427 14 14 196 clb auto 0.63 1719 0.64 0.00 2.89823 -451.929 -2.89823 2.89823 0.28 0.00110834 0.000980132 0.223991 0.195133 38 3929 16 9.20055e+06 5.01214e+06 467348. 2384.43 0.90 0.490064 0.435151 3370 10 1156 1738 87127 23536 3.536 3.536 -547.719 -3.536 0 0 593372. 3027.41 0.10 0.06 0.0450392 0.0423867
+ k6_frac_N10_frac_chain_mem32K_40nm.xml ch_intrinsics.v common 2.49 0.05 9360 3 0.28 -1 -1 36172 -1 -1 65 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66604 99 130 363 493 1 251 295 12 12 144 clb auto 0.17 617 0.28 0.00 2.00545 -202.179 -2.00545 2.00545 0.21 0.000424589 0.000371396 0.0800614 0.069436 46 1412 9 5.66058e+06 4.05111e+06 378966. 2631.71 0.47 0.175151 0.155279 1261 9 529 668 43396 14976 2.66687 2.66687 -234.696 -2.66687 0 0 486261. 3376.82 0.08 0.02 0.0151051 0.0140787
+ k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq1.v common 6.71 0.04 9228 6 0.15 -1 -1 34256 -1 -1 32 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 71760 162 96 1075 884 1 667 295 16 16 256 mult_36 auto 0.33 4733 0.54 0.01 15.5592 -1185.14 -15.5592 15.5592 0.39 0.00160242 0.00145813 0.236337 0.21248 62 10311 45 1.21132e+07 3.70461e+06 968026. 3781.35 3.38 0.731007 0.668351 8377 19 3224 5336 1782353 475161 17.1072 17.1072 -1423.44 -17.1072 0 0 1.20332e+06 4700.46 0.24 0.33 0.0887113 0.0832521
+ k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq2.v common 6.98 0.02 8396 6 0.09 -1 -1 33336 -1 -1 20 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 72048 66 96 866 607 1 547 189 18 18 324 mult_36 auto 0.34 4560 0.39 0.00 12.009 -735.792 -12.009 12.009 0.51 0.00140728 0.00131406 0.201264 0.185142 54 9621 47 1.57076e+07 3.84988e+06 1.09175e+06 3369.60 3.56 0.656056 0.610413 9058 18 3553 7591 3282454 770442 13.2466 13.2466 -862.815 -13.2466 0 0 1.41842e+06 4377.85 0.24 0.46 0.0726002 0.0685626
+ k6_frac_N10_frac_chain_mem32K_40nm.xml mkDelayWorker32B.v common 64.01 1.04 78284 5 6.97 -1 -1 53048 -1 -1 456 506 45 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 334684 506 553 3519 4017 1 3099 1560 50 50 2500 memory auto 4.53 15041 5.06 0.04 6.68635 -1894.57 -6.68635 6.68635 18.87 0.0116471 0.0105517 2.57147 2.2952 38 23149 16 1.47946e+08 4.92362e+07 6.86579e+06 2746.32 12.76 5.48339 4.99144 22207 14 4233 5386 3331744 828056 7.52959 7.52959 -2298.71 -7.52959 0 0 8.69102e+06 3476.41 2.50 0.99 0.506246 0.47648
+ k6_frac_N10_frac_chain_mem32K_40nm.xml mkPktMerge.v common 12.16 0.15 17344 2 0.13 -1 -1 33936 -1 -1 29 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 94624 311 156 1019 1160 1 965 511 28 28 784 memory auto 0.67 8138 0.87 0.01 3.74116 -4094.6 -3.74116 3.74116 1.73 0.00303104 0.00264716 0.391208 0.329273 36 14917 17 4.25198e+07 9.78293e+06 1.94918e+06 2486.20 4.43 1.04348 0.909529 13627 14 3139 3534 2595237 727498 4.23116 4.23116 -4785.8 -4.23116 0 0 2.40571e+06 3068.51 0.56 0.52 0.116276 0.10637
+ k6_frac_N10_frac_chain_mem32K_40nm.xml mkSMAdapter4B.v common 23.94 0.25 31920 4 1.76 -1 -1 38080 -1 -1 193 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 97332 193 205 2926 2852 1 1458 596 20 20 400 memory auto 2.82 11363 2.13 0.01 4.87719 -2477.32 -4.87719 4.87719 0.89 0.00368044 0.00307836 0.747832 0.605605 56 21377 42 2.07112e+07 1.31415e+07 1.41661e+06 3541.53 12.07 1.9565 1.65374 17625 14 4928 12826 996652 229620 5.25923 5.25923 -2945.62 -5.25923 0 0 1.80858e+06 4521.44 0.34 0.37 0.222806 0.206084
+ k6_frac_N10_frac_chain_mem32K_40nm.xml or1200.v common 38.48 0.41 40144 8 4.38 -1 -1 41860 -1 -1 253 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 118896 385 394 4649 4513 1 2409 1035 27 27 729 io auto 7.08 30379 4.28 0.04 8.13796 -9652.08 -8.13796 8.13796 1.66 0.00743233 0.00661673 1.29411 1.05022 88 45660 42 3.93038e+07 1.51272e+07 4.08947e+06 5609.70 12.99 4.11325 3.5657 42817 18 10128 34970 3224301 629152 8.72434 8.72434 -10837.7 -8.72434 0 0 5.12776e+06 7033.96 1.19 1.07 0.498034 0.455317
+ k6_frac_N10_frac_chain_mem32K_40nm.xml raygentop.v common 17.21 0.30 32136 3 1.03 -1 -1 40228 -1 -1 111 214 0 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 94756 214 305 2963 2869 1 1440 638 19 19 361 io auto 2.69 11058 1.36 0.01 4.28804 -2547.99 -4.28804 4.28804 0.64 0.00349009 0.00308048 0.500376 0.430091 58 23745 38 1.72706e+07 9.15023e+06 1.32779e+06 3678.09 7.06 1.62092 1.43073 19546 16 5825 13540 3597927 808321 4.87643 4.87643 -2976.1 -4.87643 0 0 1.69263e+06 4688.74 0.33 0.70 0.210225 0.195778
+ k6_frac_N10_frac_chain_mem32K_40nm.xml sha.v common 261.91 0.75 38036 3 248.90 -1 -1 95108 -1 -1 156 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 93204 38 36 2995 2744 1 1210 230 17 17 289 clb auto 1.83 11099 1.06 0.01 8.60024 -2289.89 -8.60024 8.60024 0.51 0.00269845 0.00229203 0.417193 0.330219 66 16854 22 1.34605e+07 8.40746e+06 1.18400e+06 4096.89 3.34 1.37255 1.13239 15692 22 4746 12707 469422 81010 9.99242 9.99242 -2671.82 -9.99242 0 0 1.47169e+06 5092.36 0.26 0.35 0.256951 0.230242
+ k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common 9.01 0.15 21072 15 0.65 -1 -1 35112 -1 -1 65 45 3 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 78336 45 32 1275 1232 1 827 146 14 14 196 memory auto 2.19 6673 0.60 0.00 10.0822 -6325.59 -10.0822 10.0822 0.29 0.00184806 0.0015585 0.278171 0.225962 72 12424 18 9.20055e+06 5.54311e+06 844708. 4309.73 2.86 0.716898 0.60599 10987 13 3155 8576 1581981 414115 11.6443 11.6443 -7336.6 -11.6443 0 0 1.05868e+06 5401.43 0.17 0.37 0.123906 0.114654
+ k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision0.v common 56.42 1.42 118628 5 9.28 -1 -1 71440 -1 -1 704 157 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 271328 157 197 23846 21799 1 6676 1058 33 33 1089 clb auto 7.34 39618 6.34 0.05 2.9308 -13224.6 -2.9308 2.9308 2.51 0.0175986 0.0145696 2.83612 2.12393 50 62630 23 6.0475e+07 3.79415e+07 3.66263e+06 3363.29 13.66 8.11792 6.53472 55668 12 16379 25575 918337 183454 3.69492 3.69492 -15705.8 -3.69492 0 0 4.71657e+06 4331.10 1.25 1.30 1.2635 1.15302
+ k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision1.v common 163.06 1.39 104756 3 42.83 -1 -1 84668 -1 -1 675 115 0 40 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 297020 115 145 23133 19546 1 9716 975 40 40 1600 mult_36 auto 8.13 81193 8.31 0.08 4.85074 -22294.2 -4.85074 4.85074 3.82 0.0209139 0.0154606 3.22059 2.42977 82 134682 37 9.16046e+07 5.22191e+07 8.58295e+06 5364.35 74.99 11.0334 8.8572 119058 16 33969 51744 22437603 4613086 5.29409 5.29409 -25657.1 -5.29409 0 0 1.07702e+07 6731.38 2.56 5.68 1.43419 1.25763
+ k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision2.v common 915.83 1.67 148916 3 7.46 -1 -1 202092 -1 -1 1653 149 0 324 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 1611756 149 182 65737 42630 1 35961 2308 104 104 10816 mult_36 auto 26.04 329951 49.45 0.29 14.5498 -61941.6 -14.5498 14.5498 97.32 0.0716398 0.0635048 12.6274 10.325 80 453123 49 6.67561e+08 2.17385e+08 5.94869e+07 5499.90 636.42 49.6233 41.8481 431667 19 116030 135785 30345597 6109739 15.9454 15.9454 -72300.2 -15.9454 0 0 7.49726e+07 6931.63 25.17 9.71 4.61173 4.09822
+ k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 1.73 0.05 9892 5 0.13 -1 -1 33016 -1 -1 14 11 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66852 11 30 313 321 2 118 55 7 7 49 clb auto 0.31 380 0.08 0.00 2.27568 -154.498 -2.27568 2.04477 0.04 0.000352946 0.000289135 0.0442318 0.0360193 30 1183 37 1.07788e+06 754516 77114.5 1573.76 0.22 0.110799 0.0918811 771 16 577 1036 37069 12535 2.63781 2.28939 -181.689 -2.63781 0 0 95414.1 1947.23 0.01 0.03 0.02021 0.0182209
+ k6_frac_N10_frac_chain_mem32K_40nm.xml LU8PEEng.v common 665.66 7.96 218872 100 89.06 -1 -1 103960 -1 -1 2180 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 680744 114 102 38208 33849 1 17938 2448 57 57 3249 clb auto 70.45 239395 58.45 0.55 66.5755 -50925.9 -66.5755 66.5755 24.49 0.0814194 0.0693619 11.4787 8.53304 92 361512 48 1.92089e+08 1.44771e+08 1.98119e+07 6097.84 360.11 41.8275 32.484 328109 23 72468 273398 39855950 8187728 75.3499 75.3499 -63032 -75.3499 0 0 2.51903e+07 7753.25 6.55 12.58 5.07082 4.18421
+ k6_frac_N10_frac_chain_mem32K_40nm.xml LU32PEEng.v common 4814.50 81.54 746672 102 861.10 -1 -1 359240 -1 -1 7495 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 2196124 114 102 124755 111050 1 59278 7910 102 102 10404 clb auto 214.60 1072406 440.61 2.49 67.6126 -342686 -67.6126 67.6126 86.37 0.253257 0.208504 41.8762 30.5287 128 1405319 39 6.36957e+08 5.08087e+08 8.68880e+07 8351.40 2898.46 135.37 104.209 1350075 21 217881 912992 253789873 63051185 76.337 76.337 -476260 -76.337 0 0 1.09718e+08 10545.7 29.32 77.32 17.0988 14.1755
+ k6_frac_N10_frac_chain_mem32K_40nm.xml mcml.v common 4771.62 59.80 928488 25 3355.60 -1 -1 373052 -1 -1 7078 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 2378620 36 33 190540 166259 1 61618 7333 99 99 9801 clb auto 206.08 718258 531.34 2.40 42.0812 -275832 -42.0812 42.0812 75.56 0.213428 0.178565 51.1099 37.6105 138 951582 21 6.00857e+08 4.79252e+08 8.73468e+07 8912.03 343.86 135.25 105.575 917221 22 225274 574203 91930691 20227411 45.1932 45.1932 -346416 -45.1932 0 0 1.11488e+08 11375.2 34.44 36.44 16.9437 14.5409
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_reg_qor_chain_depop/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain_depop/config/config.txt
similarity index 100%
rename from vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_reg_qor_chain_depop/config/config.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain_depop/config/config.txt
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
new file mode 100644
index 00000000000..495d3b05744
--- /dev/null
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain_depop/config/golden_results.txt
@@ -0,0 +1,22 @@
+ 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
+ k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml arm_core.v common 272.73 1.33 127316 18 68.84 -1 -1 66856 -1 -1 844 133 24 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 308920 133 179 18339 18121 1 8939 1180 36 36 1296 clb memory auto 11.48 133843 14.59 0.10 18.4184 -141279 -18.4184 18.4184 3.23 0.0285365 0.02364 4.51765 3.28971 146 224959 37 7.21828e+07 5.86395e+07 1.23606e+07 9537.51 121.90 17.4308 13.7118 207535 16 38497 147575 36095601 8273636 20.0278 20.0278 -158267 -20.0278 0 0 1.55729e+07 12016.1 3.66 9.93 2.08378 1.81202
+ k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml bgm.v common 639.11 11.02 389020 15 237.60 -1 -1 147180 -1 -1 2307 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 769940 257 32 35908 33296 1 18838 2607 58 58 3364 clb auto 33.73 235429 67.92 0.44 17.4391 -23409.1 -17.4391 17.4391 30.43 0.0673741 0.0581791 10.057 7.35047 112 479499 41 2.00088e+08 1.28693e+08 2.63593e+07 7835.69 193.72 39.7478 30.6678 442114 21 99544 467606 43136625 7767692 20.4189 20.4189 -26309.7 -20.4189 0 0 3.33056e+07 9900.58 10.00 14.10 5.31029 4.5561
+ k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml blob_merge.v common 107.02 0.53 55320 5 40.43 -1 -1 59396 -1 -1 539 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 197608 36 100 14037 11284 1 3701 675 29 29 841 clb auto 9.14 46059 6.28 0.04 12.6594 -2401.1 -12.6594 12.6594 1.98 0.0143234 0.0121828 2.40745 1.75879 98 94409 37 4.4999e+07 2.90489e+07 5.54665e+06 6595.30 35.89 8.84998 6.99963 84384 20 15443 69619 5194421 916834 14.3714 14.3714 -2913.99 -14.3714 0 0 6.99642e+06 8319.17 1.61 2.00 1.1219 0.958585
+ k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml boundtop.v common 5.28 0.54 45100 3 0.39 -1 -1 37724 -1 -1 90 142 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 81512 142 192 1069 1139 1 529 424 14 14 196 clb auto 0.39 1652 0.57 0.00 2.91405 -454.748 -2.91405 2.91405 0.31 0.00108287 0.000960971 0.19774 0.172481 50 3783 18 9.20055e+06 4.85046e+06 641979. 3275.40 0.94 0.470288 0.419793 3531 11 1197 2084 128194 36276 3.65266 3.65266 -552.825 -3.65266 0 0 827179. 4220.30 0.14 0.07 0.052197 0.0491441
+ k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml ch_intrinsics.v common 2.27 0.05 9308 3 0.20 -1 -1 36208 -1 -1 64 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 70576 99 130 363 493 1 261 294 12 12 144 clb auto 0.10 697 0.26 0.00 2.11495 -207.011 -2.11495 2.11495 0.19 0.00042807 0.000375283 0.0732857 0.0636072 42 1903 12 5.66058e+06 3.99722e+06 373597. 2594.42 0.49 0.16952 0.150471 1800 12 675 938 87522 29405 2.95628 2.95628 -261.888 -2.95628 0 0 468675. 3254.69 0.08 0.04 0.0182526 0.016879
+ k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml diffeq1.v common 7.65 0.04 9120 6 0.16 -1 -1 34296 -1 -1 26 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 71180 162 96 1075 884 1 667 289 16 16 256 mult_36 auto 0.32 5078 0.49 0.01 15.3726 -1203.18 -15.3726 15.3726 0.40 0.00154587 0.00141464 0.216962 0.196416 60 11156 33 1.21132e+07 3.38124e+06 1.01260e+06 3955.47 4.02 0.661111 0.605204 9613 24 3616 6215 1828440 447202 17.5186 17.5186 -1462.9 -17.5186 0 0 1.26536e+06 4942.82 0.27 0.48 0.158059 0.14834
+ k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml diffeq2.v common 9.44 0.03 8260 6 0.08 -1 -1 33316 -1 -1 16 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 71636 66 96 866 607 1 533 185 18 18 324 mult_36 auto 0.22 4735 0.40 0.00 12.0481 -714.751 -12.0481 12.0481 0.56 0.00143061 0.00130845 0.207797 0.190984 52 11667 29 1.57076e+07 3.6343e+06 1.14165e+06 3523.62 5.58 0.615989 0.570261 10315 22 4558 9816 5259633 1258198 13.5233 13.5233 -870.647 -13.5233 0 0 1.50318e+06 4639.44 0.26 0.79 0.08807 0.0828826
+ k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml LU8PEEng.v common 554.87 7.83 218856 100 89.21 -1 -1 103852 -1 -1 1841 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 691016 114 102 38208 33849 1 17353 2109 52 52 2704 clb auto 49.19 231454 49.19 0.36 66.2277 -52518.7 -66.2277 66.2277 24.11 0.0767031 0.0548969 10.8596 7.77616 126 414532 46 1.58905e+08 1.26502e+08 2.31921e+07 8576.97 275.65 42.0825 32.3415 382076 24 80752 321509 53511812 11238071 73.8205 73.8205 -66754.4 -73.8205 -18.6509 -0.298787 2.92176e+07 10805.3 8.28 16.71 5.47406 4.48218
+ k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml LU32PEEng.v common 5855.29 80.54 746712 102 805.48 -1 -1 358940 -1 -1 6283 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 2225316 114 102 124755 111050 1 58496 6698 94 94 8836 clb auto 146.42 1038840 443.95 2.58 63.968 -327364 -63.968 63.968 89.39 0.260826 0.218737 42.1278 31.8582 166 1627499 49 5.40921e+08 4.42773e+08 9.94454e+07 11254.6 4019.72 170.666 132.583 1527530 23 242192 1034564 250008716 57569237 76.0612 76.0612 -480995 -76.0612 -53.7561 -0.292146 1.26268e+08 14290.2 45.20 93.25 23.3289 19.267
+ k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml mcml.v common 5742.80 55.24 928536 25 3414.05 -1 -1 373116 -1 -1 6728 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 2469828 36 33 190540 166259 1 60177 6983 97 97 9409 clb auto 182.46 724582 694.79 3.21 39.3272 -247845 -39.3272 39.3272 98.82 0.29533 0.241879 52.3134 39.0082 150 1097566 40 5.71422e+08 4.60391e+08 9.66696e+07 10274.2 1043.28 155.671 121.131 1026180 21 255543 695596 135326112 29284113 42.7203 42.7203 -313582 -42.7203 -0.103902 -0.0259755 1.22193e+08 12986.9 46.12 60.94 21.2537 17.9592
+ k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml mkDelayWorker32B.v common 68.02 0.80 78428 5 6.32 -1 -1 53084 -1 -1 453 506 45 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 396408 506 553 3519 4017 1 3086 1557 50 50 2500 memory auto 3.98 15906 5.06 0.04 6.63464 -1807.67 -6.63464 6.63464 22.08 0.0120633 0.0109584 2.56339 2.29347 40 24763 18 1.47946e+08 4.90746e+07 7.85310e+06 3141.24 14.98 5.5193 5.03565 23665 16 4699 6227 4255095 1086941 7.29496 7.29496 -2223.41 -7.29496 -5.03631 -0.193229 9.77405e+06 3909.62 2.68 1.14 0.52962 0.498006
+ k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml mkPktMerge.v common 13.99 0.11 17184 2 0.06 -1 -1 33968 -1 -1 25 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 95320 311 156 1019 1160 1 954 507 28 28 784 memory auto 0.42 7932 0.81 0.01 3.65703 -4338.92 -3.65703 3.65703 1.73 0.00241531 0.00205451 0.359487 0.301906 40 14723 37 4.25198e+07 9.56735e+06 2.32339e+06 2963.51 6.16 1.20073 1.04046 13500 17 3399 3683 2547833 716874 4.00095 4.00095 -5037.99 -4.00095 -15.6433 -0.322548 2.89875e+06 3697.39 0.86 0.69 0.1828 0.168336
+ k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml mkSMAdapter4B.v common 24.56 0.25 31980 4 1.66 -1 -1 37964 -1 -1 167 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 95356 193 205 2926 2852 1 1371 570 20 20 400 memory auto 1.59 10697 2.76 0.02 4.1938 -2470.95 -4.1938 4.1938 0.95 0.00547432 0.00454293 1.05816 0.857443 78 21098 24 2.07112e+07 1.17403e+07 2.06176e+06 5154.39 13.20 3.2448 2.83199 18857 15 4972 14066 1481027 326048 4.86803 4.86803 -2859.5 -4.86803 -7.79205 -0.298787 2.60035e+06 6500.87 0.52 0.45 0.220497 0.204208
+ k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml or1200.v common 80.43 0.40 39940 8 4.14 -1 -1 41956 -1 -1 202 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 126664 385 394 4649 4513 1 2346 984 27 27 729 io auto 3.55 30099 4.16 0.04 8.26188 -9666.23 -8.26188 8.26188 1.66 0.00757382 0.00679062 1.3245 1.08111 110 56434 38 3.93038e+07 1.23786e+07 5.33614e+06 7319.81 58.12 4.61999 4.01801 49850 19 11513 40653 5326074 1123118 8.66997 8.66997 -10836.2 -8.66997 0 0 6.77266e+06 9290.34 1.56 1.49 0.522324 0.482371
+ k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml raygentop.v common 15.07 0.30 31920 3 0.88 -1 -1 40260 -1 -1 100 214 0 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 93916 214 305 2963 2869 1 1462 627 19 19 361 io auto 1.25 10916 1.33 0.02 4.47257 -2470.71 -4.47257 4.47257 0.70 0.00353203 0.00299081 0.486256 0.417284 68 25698 40 1.72706e+07 8.5574e+06 1.69273e+06 4689.01 6.64 1.5279 1.34953 21459 19 6285 15322 3278969 748877 4.76857 4.76857 -2933.03 -4.76857 0 0 2.08404e+06 5772.96 0.36 0.65 0.216243 0.201178
+ k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml sha.v common 259.20 0.75 38024 3 242.87 -1 -1 95064 -1 -1 138 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 94744 38 36 2995 2744 1 1208 212 16 16 256 clb auto 1.41 11256 1.16 0.01 8.87371 -2382.95 -8.87371 8.87371 0.40 0.00288384 0.00245061 0.444271 0.34904 80 21797 26 1.21132e+07 7.43737e+06 1.29183e+06 5046.22 6.76 1.67218 1.36964 19351 22 5540 18113 1095161 241229 10.3694 10.3694 -2917.57 -10.3694 0 0 1.62458e+06 6346.00 0.26 0.43 0.24691 0.221175
+ k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml spree.v common 10.27 0.15 21180 15 0.64 -1 -1 35076 -1 -1 49 45 3 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 80640 45 32 1275 1232 1 822 130 14 14 196 memory auto 0.78 6630 0.58 0.00 9.55177 -6480.8 -9.55177 9.55177 0.31 0.00158947 0.00133585 0.266277 0.218387 100 14267 33 9.20055e+06 4.68081e+06 1.19340e+06 6088.79 5.55 0.935973 0.798409 12397 14 3745 10984 1853298 463403 10.4092 10.4092 -7370.27 -10.4092 -17.8589 -0.318417 1.49920e+06 7648.97 0.23 0.35 0.107088 0.0985663
+ k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml stereovision0.v common 55.85 1.42 118508 5 8.62 -1 -1 71192 -1 -1 684 157 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 276612 157 197 23846 21799 1 6801 1038 33 33 1089 clb auto 5.52 40314 6.74 0.05 2.95855 -13303.1 -2.95855 2.95855 2.90 0.0170415 0.0139612 2.85817 2.11815 64 68056 41 6.0475e+07 3.68636e+07 5.14656e+06 4725.95 15.37 9.06347 7.35341 64167 14 19652 32945 2075106 479443 3.72591 3.72591 -16028.1 -3.72591 0 0 6.36035e+06 5840.54 1.52 1.36 1.14146 1.03026
+ k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml stereovision1.v common 171.40 1.33 104680 3 40.91 -1 -1 84696 -1 -1 642 115 0 40 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 307276 115 145 23133 19546 1 9748 942 40 40 1600 mult_36 auto 5.07 76270 8.24 0.07 4.99955 -21585.1 -4.99955 4.99955 4.22 0.019923 0.0144395 3.18808 2.39282 88 140299 45 9.16046e+07 5.04406e+07 9.92704e+06 6204.40 86.18 11.5173 9.24212 123303 21 39408 63999 27118412 5502186 5.37438 5.37438 -25122.8 -5.37438 0 0 1.23763e+07 7735.20 3.12 5.59 1.50368 1.31466
+ k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml stereovision2.v common 532.37 1.66 148968 3 7.37 -1 -1 202156 -1 -1 1647 149 0 324 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 1882036 149 182 65737 42630 1 35973 2302 104 104 10816 mult_36 auto 25.74 330013 49.95 0.29 14.5277 -60838.7 -14.5277 14.5277 109.17 0.0710758 0.0628898 12.6533 10.3349 80 478178 22 6.67561e+08 2.17062e+08 6.43241e+07 5947.13 235.17 39.8139 33.4269 446994 18 117664 142709 36786595 7674733 16.6813 16.6813 -72795.8 -16.6813 0 0 8.07606e+07 7466.78 25.10 10.53 4.4168 3.91473
+ k6_frac_N10_frac_chain_depop50_mem32K_40nm.xml stereovision3.v common 1.48 0.05 9784 5 0.11 -1 -1 33036 -1 -1 15 11 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 67176 11 30 313 321 2 108 56 7 7 49 clb auto 0.14 395 0.08 0.00 2.36605 -152.494 -2.36605 1.9999 0.04 0.000358432 0.000292409 0.0463688 0.0376352 30 1169 31 1.07788e+06 808410 84241.2 1719.21 0.20 0.107548 0.0891058 944 17 532 1516 56407 21898 3.07845 2.37233 -183.444 -3.07845 0 0 103128. 2104.65 0.01 0.03 0.020892 0.0188297
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_reg_qor_chain_large/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain_large/config/config.txt
similarity index 100%
rename from vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_reg_qor_chain_large/config/config.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain_large/config/config.txt
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_reg_qor_chain_large/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain_large/config/golden_results.txt
similarity index 100%
rename from vtr_flow/tasks/regression_tests/vtr_reg_nightly/vtr_reg_qor_chain_large/config/golden_results.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain_large/config/golden_results.txt
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_weekly/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
similarity index 100%
rename from vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_qor_chain_predictor_off/config/config.txt
rename to vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain_predictor_off/config/config.txt
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
new file mode 100644
index 00000000000..aa9fe3d89b2
--- /dev/null
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain_predictor_off/config/golden_results.txt
@@ -0,0 +1,22 @@
+ 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
+ k6_frac_N10_frac_chain_mem32K_40nm.xml arm_core.v common 269.81 1.48 127116 18 68.27 -1 -1 66568 -1 -1 1008 133 24 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 351672 133 179 18339 18121 1 9040 1344 39 39 1521 clb auto 21.70 138925 15.16 0.10 17.3291 -132913 -17.3291 17.3291 3.70 0.030988 0.0256309 4.68525 3.40289 106 195650 27 8.65315e+07 6.74784e+07 1.02794e+07 6758.33 111.34 18.9185 14.7658 182348 15 34912 125847 27216363 6482638 19.2483 19.2483 -152788 -19.2483 0 0 1.30215e+07 8561.12 3.84 7.19 1.94061 1.68975
+ k6_frac_N10_frac_chain_mem32K_40nm.xml bgm.v common 652.65 10.96 389048 15 231.59 -1 -1 147092 -1 -1 2712 257 0 11 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 758804 257 32 35908 33296 1 19534 3012 63 63 3969 clb auto 54.75 255913 69.34 0.47 18.1917 -23818.8 -18.1917 18.1917 30.31 0.082101 0.0725892 10.1014 7.361 80 392154 29 2.36641e+08 1.50518e+08 2.15027e+07 5417.67 196.92 48.53 37.628 366453 20 88192 390830 20471535 3157944 20.5117 20.5117 -26441.9 -20.5117 0 0 2.71248e+07 6834.16 9.06 9.76 5.1415 4.43401
+ k6_frac_N10_frac_chain_mem32K_40nm.xml blob_merge.v common 141.23 0.44 55428 5 38.19 -1 -1 59600 -1 -1 619 36 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 188360 36 100 14037 11284 1 3230 755 31 31 961 clb auto 13.79 45897 5.68 0.04 13.3428 -2596.7 -13.3428 13.3428 2.40 0.0127153 0.0105197 2.12648 1.54036 60 76713 48 5.14688e+07 3.33604e+07 3.85800e+06 4014.56 69.22 7.38024 5.68246 66475 13 12384 59651 2545727 332961 15.3759 15.3759 -2979.2 -15.3759 0 0 4.86014e+06 5057.38 1.11 1.34 0.856679 0.744743
+ k6_frac_N10_frac_chain_mem32K_40nm.xml boundtop.v common 6.29 0.51 44976 3 0.37 -1 -1 37684 -1 -1 93 142 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 73516 142 192 1069 1139 1 566 427 14 14 196 clb auto 0.63 1719 0.57 0.00 2.89823 -451.929 -2.89823 2.89823 0.28 0.00109467 0.000972948 0.195215 0.170313 38 3929 16 9.20055e+06 5.01214e+06 467348. 2384.43 1.64 0.54282 0.483482 3370 10 1156 1738 87127 23536 3.536 3.536 -547.719 -3.536 0 0 593372. 3027.41 0.10 0.06 0.0461998 0.0434643
+ k6_frac_N10_frac_chain_mem32K_40nm.xml ch_intrinsics.v common 2.22 0.05 9432 3 0.19 -1 -1 36200 -1 -1 65 99 1 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66664 99 130 363 493 1 251 295 12 12 144 clb auto 0.13 617 0.25 0.00 2.00545 -202.179 -2.00545 2.00545 0.18 0.000428766 0.000375707 0.0721075 0.0625634 46 1412 9 5.66058e+06 4.05111e+06 378966. 2631.71 0.42 0.132864 0.117642 1261 9 529 668 43396 14976 2.66687 2.66687 -234.696 -2.66687 0 0 486261. 3376.82 0.08 0.02 0.0148596 0.0138955
+ k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq1.v common 8.78 0.04 9016 6 0.17 -1 -1 34268 -1 -1 32 162 0 5 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 71732 162 96 1075 884 1 667 295 16 16 256 mult_36 auto 0.32 4733 0.50 0.01 15.5592 -1185.14 -15.5592 15.5592 0.37 0.00152817 0.00139693 0.217872 0.197068 62 10311 45 1.21132e+07 3.70461e+06 968026. 3781.35 5.42 0.963492 0.883003 8377 19 3224 5336 1782353 475161 17.1072 17.1072 -1423.44 -17.1072 0 0 1.20332e+06 4700.46 0.20 0.31 0.0853564 0.0797899
+ k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq2.v common 9.22 0.03 8168 6 0.09 -1 -1 33300 -1 -1 20 66 0 7 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 72192 66 96 866 607 1 547 189 18 18 324 mult_36 auto 0.35 4560 0.41 0.00 12.009 -735.792 -12.009 12.009 0.52 0.0014174 0.00132161 0.204848 0.188121 60 9415 21 1.57076e+07 3.84988e+06 1.22123e+06 3769.23 5.88 0.687682 0.638521 8603 17 2397 4657 1890034 439154 13.181 13.181 -845.871 -13.181 0 0 1.53789e+06 4746.57 0.26 0.30 0.0693529 0.0657309
+ k6_frac_N10_frac_chain_mem32K_40nm.xml LU8PEEng.v common 479.27 7.49 218888 100 85.94 -1 -1 103964 -1 -1 2180 114 44 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 688176 114 102 38208 33849 1 17938 2448 57 57 3249 clb auto 67.56 239395 71.22 0.50 66.5755 -50925.9 -66.5755 66.5755 24.28 0.100265 0.0839475 14.2333 10.5167 92 361512 48 1.92089e+08 1.44771e+08 1.98119e+07 6097.84 167.92 39.0305 29.9848 328109 23 72468 273398 39855950 8187728 75.3499 75.3499 -63032 -75.3499 0 0 2.51903e+07 7753.25 6.70 13.57 5.43985 4.49789
+ k6_frac_N10_frac_chain_mem32K_40nm.xml LU32PEEng.v common 3460.88 81.65 746632 102 807.97 -1 -1 358852 -1 -1 7495 114 167 32 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 2381312 114 102 124755 111050 1 59278 7910 102 102 10404 clb auto 217.77 1072406 485.23 2.74 67.6126 -342686 -67.6126 67.6126 92.31 0.258025 0.214171 43.9533 32.1826 128 1405319 39 6.36957e+08 5.08087e+08 8.68880e+07 8351.40 1524.24 198.521 153.641 1350075 21 217881 912992 253789873 63051185 76.337 76.337 -476260 -76.337 0 0 1.09718e+08 10545.7 33.11 91.44 18.9702 15.7474
+ k6_frac_N10_frac_chain_mem32K_40nm.xml mcml.v common 5064.63 57.54 928552 25 3403.75 -1 -1 373104 -1 -1 7078 36 159 27 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 2394848 36 33 190540 166259 1 61618 7333 99 99 9801 clb auto 219.72 718258 618.26 3.00 42.0812 -275832 -42.0812 42.0812 86.36 0.23051 0.192622 48.7536 36.0398 138 951582 21 6.00857e+08 4.79252e+08 8.73468e+07 8912.03 457.91 154.37 119.977 917221 22 225274 574203 91930691 20227411 45.1932 45.1932 -346416 -45.1932 0 0 1.11488e+08 11375.2 43.80 41.12 18.3494 15.6474
+ k6_frac_N10_frac_chain_mem32K_40nm.xml mkDelayWorker32B.v common 76.58 0.79 78332 5 5.90 -1 -1 53132 -1 -1 456 506 45 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 335340 506 553 3519 4017 1 3099 1560 50 50 2500 memory auto 4.49 15041 4.80 0.04 6.68635 -1894.57 -6.68635 6.68635 18.16 0.0114787 0.0103772 2.43774 2.17687 38 23149 16 1.47946e+08 4.92362e+07 6.86579e+06 2746.32 28.48 5.92539 5.40792 22207 14 4233 5386 3331744 828056 7.52959 7.52959 -2298.71 -7.52959 0 0 8.69102e+06 3476.41 2.30 1.00 0.522626 0.494679
+ k6_frac_N10_frac_chain_mem32K_40nm.xml mkPktMerge.v common 11.81 0.11 17348 2 0.07 -1 -1 33996 -1 -1 29 311 15 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 94692 311 156 1019 1160 1 965 511 28 28 784 memory auto 0.48 8138 0.84 0.01 3.74116 -4094.6 -3.74116 3.74116 1.58 0.00247621 0.00212405 0.376246 0.316773 36 14917 17 4.25198e+07 9.78293e+06 1.94918e+06 2486.20 4.51 1.03892 0.904886 13627 14 3139 3534 2595237 727498 4.23116 4.23116 -4785.8 -4.23116 0 0 2.40571e+06 3068.51 0.65 0.68 0.1696 0.155103
+ k6_frac_N10_frac_chain_mem32K_40nm.xml mkSMAdapter4B.v common 22.76 0.27 31996 4 1.67 -1 -1 37996 -1 -1 193 193 5 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 97460 193 205 2926 2852 1 1458 596 20 20 400 memory auto 2.70 11363 2.09 0.01 4.87719 -2477.32 -4.87719 4.87719 0.68 0.00375302 0.00313141 0.734772 0.593978 56 21377 42 2.07112e+07 1.31415e+07 1.41661e+06 3541.53 11.86 1.91815 1.61938 17625 14 4928 12826 996652 229620 5.25923 5.25923 -2945.62 -5.25923 0 0 1.80858e+06 4521.44 0.31 0.37 0.217726 0.200862
+ k6_frac_N10_frac_chain_mem32K_40nm.xml or1200.v common 185.04 0.46 40060 8 4.20 -1 -1 41872 -1 -1 253 385 2 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 118512 385 394 4649 4513 1 2409 1035 27 27 729 io auto 6.90 30379 4.46 0.04 8.13796 -9652.08 -8.13796 8.13796 1.52 0.00778595 0.0069791 1.38242 1.11181 88 45660 42 3.93038e+07 1.51272e+07 4.08947e+06 5609.70 160.25 6.5954 5.6945 42817 18 10128 34970 3224301 629152 8.72434 8.72434 -10837.7 -8.72434 0 0 5.12776e+06 7033.96 1.15 1.02 0.473228 0.433429
+ k6_frac_N10_frac_chain_mem32K_40nm.xml raygentop.v common 16.26 0.34 32004 3 0.90 -1 -1 40236 -1 -1 111 214 0 8 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 94072 214 305 2963 2869 1 1440 638 19 19 361 io auto 2.17 11058 1.30 0.01 4.28804 -2547.99 -4.28804 4.28804 0.59 0.00347113 0.00307978 0.466541 0.400197 58 23745 38 1.72706e+07 9.15023e+06 1.32779e+06 3678.09 7.20 1.56228 1.37605 19546 16 5825 13540 3597927 808321 4.87643 4.87643 -2976.1 -4.87643 0 0 1.69263e+06 4688.74 0.30 0.67 0.195534 0.18203
+ k6_frac_N10_frac_chain_mem32K_40nm.xml sha.v common 254.32 0.74 37996 3 235.25 -1 -1 95040 -1 -1 156 38 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 93376 38 36 2995 2744 1 1210 230 17 17 289 clb auto 2.15 11099 1.21 0.01 8.60024 -2289.89 -8.60024 8.60024 0.57 0.00286613 0.00243424 0.504352 0.391189 66 16854 22 1.34605e+07 8.40746e+06 1.18400e+06 4096.89 8.69 2.16811 1.76894 15692 22 4746 12707 469422 81010 9.99242 9.99242 -2671.82 -9.99242 0 0 1.47169e+06 5092.36 0.25 0.32 0.237773 0.213212
+ k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common 11.39 0.16 21036 15 0.66 -1 -1 35172 -1 -1 65 45 3 1 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 77936 45 32 1275 1232 1 827 146 14 14 196 memory auto 2.13 6673 0.55 0.00 10.0822 -6325.59 -10.0822 10.0822 0.28 0.00163847 0.00137079 0.247235 0.201216 72 12424 18 9.20055e+06 5.54311e+06 844708. 4309.73 5.35 0.904368 0.764839 10987 13 3155 8576 1581981 414115 11.6443 11.6443 -7336.6 -11.6443 0 0 1.05868e+06 5401.43 0.16 0.33 0.107953 0.0999341
+ k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision0.v common 92.23 1.43 118520 5 9.32 -1 -1 71236 -1 -1 704 157 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 271852 157 197 23846 21799 1 6676 1058 33 33 1089 clb auto 7.46 39618 6.23 0.05 2.9308 -13224.6 -2.9308 2.9308 2.55 0.0167976 0.0139089 2.72218 2.05998 50 62630 23 6.0475e+07 3.79415e+07 3.66263e+06 3363.29 50.73 11.3202 9.09089 55668 12 16379 25575 918337 183454 3.69492 3.69492 -15705.8 -3.69492 0 0 4.71657e+06 4331.10 1.02 1.12 1.08857 0.993885
+ k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision1.v common 168.50 1.33 104660 3 43.29 -1 -1 84672 -1 -1 675 115 0 40 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 321752 115 145 23133 19546 1 9716 975 40 40 1600 mult_36 auto 7.65 81193 8.04 0.06 4.85074 -22294.2 -4.85074 4.85074 3.91 0.0200686 0.0147713 3.09128 2.32254 82 134682 37 9.16046e+07 5.22191e+07 8.58295e+06 5364.35 81.91 12.8131 10.3486 119058 16 33969 51744 22437603 4613086 5.29409 5.29409 -25657.1 -5.29409 0 0 1.07702e+07 6731.38 2.47 4.83 1.29502 1.15861
+ k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision2.v common 500.44 1.66 148876 3 7.04 -1 -1 202128 -1 -1 1653 149 0 324 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 1611520 149 182 65737 42630 1 35961 2308 104 104 10816 mult_36 auto 25.24 329951 42.93 0.27 14.5498 -61941.6 -14.5498 14.5498 91.37 0.0708359 0.0629052 11.9827 9.79984 80 453123 49 6.67561e+08 2.17385e+08 5.94869e+07 5499.90 235.52 45.2121 38.3272 431667 19 116030 135785 30345597 6109739 15.9454 15.9454 -72300.2 -15.9454 0 0 7.49726e+07 6931.63 24.72 9.60 4.52948 4.02549
+ k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 1.77 0.05 9804 5 0.09 -1 -1 33052 -1 -1 14 11 0 0 success v8.0.0-3684-g44d092b7d-dirty Release VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2021-05-28T15:22:43 betzgrp-wintermute.eecg.utoronto.ca /home/ahmadi55/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests 66940 11 30 313 321 2 118 55 7 7 49 clb auto 0.22 380 0.08 0.00 2.27568 -154.498 -2.27568 2.04477 0.04 0.000351492 0.000288388 0.0444322 0.0361463 36 848 30 1.07788e+06 754516 87745.0 1790.71 0.35 0.146989 0.12221 724 16 494 874 35494 12201 2.63781 2.28739 -185.002 -2.63781 0 0 109473. 2234.15 0.01 0.03 0.0202377 0.0182262
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_weekly/task_list.txt b/vtr_flow/tasks/regression_tests/vtr_reg_weekly/task_list.txt
index 8b601361abf..543a2df55bc 100644
--- a/vtr_flow/tasks/regression_tests/vtr_reg_weekly/task_list.txt
+++ b/vtr_flow/tasks/regression_tests/vtr_reg_weekly/task_list.txt
@@ -1,6 +1,2 @@
regression_tests/vtr_reg_weekly/vtr_reg_titan_he
-regression_tests/vtr_reg_weekly/vtr_reg_titan
-regression_tests/vtr_reg_weekly/vtr_reg_qor_chain_predictor_off
-regression_tests/vtr_reg_weekly/vtr_reg_fpu_hard_block_arch
-regression_tests/vtr_reg_weekly/vtr_reg_fpu_soft_logic_arch
-regression_tests/vtr_reg_weekly/vpr_ispd
+
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vpr_ispd/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vpr_ispd/config/golden_results.txt
deleted file mode 100644
index dcb2af15e4e..00000000000
--- a/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vpr_ispd/config/golden_results.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-arch circuit script_params vtr_flow_elapsed_time error num_IO num_CLB num_DSP num_BRAM vpr_revision vpr_status hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks 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 placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est routed_wirelength total_nets_routed total_connections_routed total_heap_pushes total_heap_pops logic_block_area_total logic_block_area_used routing_area_total routing_area_per_tile crit_path_route_success_iteration critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_route_time
-ultrascale_ispd.xml FPGA-example1.blif common 86.14 72 220 2 2 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vpr_ispd/run006/ultrascale_ispd.xml/FPGA-example1.blif/common 4503904 51 20 3417 3407 1 3287 296 168 480 80640 -1 ultrascale_ispd 5.12 29531 1.43 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
-ultrascale_ispd.xml FPGA-example2.blif common 6525.35 456 39262 200 400 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vpr_ispd/run006/ultrascale_ispd.xml/FPGA-example2.blif/common 6991428 303 150 545542 542692 1 539559 40318 168 480 80640 -1 ultrascale_ispd 796.83 5830359 5599.35 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
-ultrascale_ispd.xml FPGA-example3.blif common 5953.24 606 30856 200 500 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vpr_ispd/run006/ultrascale_ispd.xml/FPGA-example3.blif/common 6621500 403 200 431203 428403 1 429172 32162 168 480 80640 -1 ultrascale_ispd 600.24 16335580 5231.18 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
-ultrascale_ispd.xml FPGA-example4.blif common 5969.83 -1 -1 -1 -1 v8.0.0-1603-g6c2a712a0 exited with return code 1 betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vpr_ispd/run006/ultrascale_ispd.xml/FPGA-example4.blif/common 5716480 403 200 850587 844787 1 -1 -1 168 480 -1 -1 -1 5951.00 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
-ultrascale_ispd.xml clk_design1.blif common 99.95 109 592 2 2 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vpr_ispd/run006/ultrascale_ispd.xml/clk_design1.blif/common 4538928 57 20 9969 9959 30 9711 705 168 480 80640 -1 ultrascale_ispd 9.11 63424 5.84 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
-ultrascale_ispd.xml clk_design2.blif common 442.45 244 5837 10 10 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vpr_ispd/run006/ultrascale_ispd.xml/clk_design2.blif/common 4994744 137 60 100115 100025 45 97978 6101 168 480 80640 -1 ultrascale_ispd 89.88 924709 265.01 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
-ultrascale_ispd.xml clk_design3.blif common 2963.32 374 22993 50 96 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vpr_ispd/run006/ultrascale_ispd.xml/clk_design3.blif/common 6291636 217 120 400080 399454 35 390926 23513 168 480 80640 -1 ultrascale_ispd 244.17 4772904 2608.48 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
-ultrascale_ispd.xml clk_design4.blif common 6361.80 484 39151 150 366 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vpr_ispd/run006/ultrascale_ispd.xml/clk_design4.blif/common 7329188 292 150 685438 683387 40 669318 40151 168 480 80640 -1 ultrascale_ispd 443.76 8539380 5788.14 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
-ultrascale_ispd.xml clk_design5.blif common 10669.51 515 51693 420 885 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vpr_ispd/run006/ultrascale_ispd.xml/clk_design5.blif/common 8046876 307 150 948147 942073 56 928185 53513 168 480 80640 -1 ultrascale_ispd 627.98 12115275 9883.18 -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_weekly/vtr_reg_fpu_hard_block_arch/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_fpu_hard_block_arch/config/golden_results.txt
deleted file mode 100644
index e9c40ad4a96..00000000000
--- a/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_fpu_hard_block_arch/config/golden_results.txt
+++ /dev/null
@@ -1,9 +0,0 @@
-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_revision vpr_status hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks 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 placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est routed_wirelength total_nets_routed total_connections_routed total_heap_pushes total_heap_pops logic_block_area_total logic_block_area_used routing_area_total routing_area_per_tile crit_path_route_success_iteration critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_route_time num_fpu
-hard_fpu_arch_timing.xml bfly.v common 3.85 0.03 6836 1 0.02 -1 -1 30788 -1 -1 0 193 -1 -1 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_fpu_hard_block_arch/run007/hard_fpu_arch_timing.xml/bfly.v/common 41324 193 64 833 649 1 353 260 24 24 576 io auto 1.60 5479 0.47 2.985 -1309 -2.985 7356 533 720 5115089 2516883 1.06129e+06 103149 1.28794e+06 2236.02 14 2.985 2.985 -1359.91 -2.985 -40.8482 -0.0851 0.83 3
-hard_fpu_arch_timing.xml bgm.v common 12.51 0.05 8216 1 0.04 -1 -1 31428 -1 -1 0 257 -1 -1 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_fpu_hard_block_arch/run007/hard_fpu_arch_timing.xml/bgm.v/common 69084 257 32 1281 693 1 1021 299 38 38 1444 block_FPU auto 4.94 16818 1.05 2.985 -3092.78 -2.985 23580 1845 2464 24033547 12730674 2.90196e+06 343832 3.35777e+06 2325.33 14 2.985 2.985 -3439.47 -2.985 -25.1662 -0.0851 4.43 10
-hard_fpu_arch_timing.xml dscg.v common 8.35 0.03 6548 1 0.02 -1 -1 30788 -1 -1 0 129 -1 -1 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_fpu_hard_block_arch/run007/hard_fpu_arch_timing.xml/dscg.v/common 50908 129 64 769 585 1 513 198 32 32 1024 block_FPU auto 3.70 7404 0.55 2.985 -1358.14 -2.985 11339 888 1271 14835699 9019222 2.063e+06 171916 2.37490e+06 2319.23 15 2.985 2.985 -1521.9 -2.985 -21.7856 -0.0851 2.68 5
-hard_fpu_arch_timing.xml fir.v common 32.67 0.03 6900 1 0.03 -1 -1 31124 -1 -1 37 161 -1 -1 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_fpu_hard_block_arch/run007/hard_fpu_arch_timing.xml/fir.v/common 47448 161 32 993 808 1 545 234 30 30 900 block_FPU auto 30.00 6341 0.49 2.985 -1322.93 -2.985 9179 922 1051 5806849 2682821 1.6779e+06 222344 2.03108e+06 2256.75 7 2.985 2.985 -1445.92 -2.985 -39.3105 -0.0851 0.87 4
-hard_fpu_arch_timing.xml mm3.v common 2.16 0.02 6152 1 0.01 -1 -1 30444 -1 -1 0 193 -1 -1 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_fpu_hard_block_arch/run007/hard_fpu_arch_timing.xml/mm3.v/common 34940 193 32 545 422 1 289 227 21 21 441 io auto 0.88 3143 0.29 2.985 -793.636 -2.985 4259 423 423 1836814 649845 809148 68766.3 979092. 2220.16 10 2.985 2.985 -805.207 -2.985 -21.8252 -0.0851 0.25 2
-hard_fpu_arch_timing.xml ode.v common 31.31 0.04 7360 1 0.04 -1 -1 33796 -1 -1 151 130 -1 -1 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_fpu_hard_block_arch/run007/hard_fpu_arch_timing.xml/ode.v/common 40916 130 72 1194 1103 1 589 355 19 19 361 io auto 29.45 4575 0.58 2.985 -1330.9 -2.985 6750 1318 1419 3312472 1427922 653279 414890 795482. 2203.55 15 2.985 2.985 -1420.57 -2.985 -51.2702 -0.0851 0.48 2
-hard_fpu_arch_timing.xml syn2.v common 3.99 0.02 6680 1 0.01 -1 -1 30456 -1 -1 0 161 -1 -1 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_fpu_hard_block_arch/run007/hard_fpu_arch_timing.xml/syn2.v/common 47692 161 128 641 490 1 479 293 30 30 900 block_FPU auto 1.02 8131 0.57 2.985 -1450.95 -2.985 10687 863 1091 7542802 3863286 1.6779e+06 137533 2.03108e+06 2256.75 7 2.985 2.985 -1575.36 -2.985 -16.1177 -0.0851 1.16 4
-hard_fpu_arch_timing.xml syn7.v common 25.15 0.07 9180 1 0.03 -1 -1 32616 -1 -1 0 161 -1 -1 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_fpu_hard_block_arch/run007/hard_fpu_arch_timing.xml/syn7.v/common 119996 161 128 1921 499 1 1697 310 54 54 2916 block_FPU auto 2.28 43036 2.26 2.985 -7784.21 -2.985 59257 3441 5987 83419518 47524140 6.08571e+06 722046 6.89978e+06 2366.18 8 2.985 2.985 -8558.99 -2.985 -33.6146 -0.0851 16.55 21
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_fpu_soft_logic_arch/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_fpu_soft_logic_arch/config/golden_results.txt
deleted file mode 100755
index 28756d9da64..00000000000
--- a/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_fpu_soft_logic_arch/config/golden_results.txt
+++ /dev/null
@@ -1,8 +0,0 @@
-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_revision vpr_status hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks 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 placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est routed_wirelength total_nets_routed total_connections_routed total_heap_pushes total_heap_pops logic_block_area_total logic_block_area_used routing_area_total routing_area_per_tile crit_path_route_success_iteration critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_route_time
-soft_fpu_arch_timing.xml bfly.v common 227.72 3.67 165780 60 87.22 -1 -1 85992 -1 -1 6856 193 -1 -1 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_fpu_soft_logic_arch/run007/soft_fpu_arch_timing.xml/bfly.v/common 371044 193 64 23996 24060 1 18159 7113 85 85 7225 clb auto 4.85 229576 99.06 34.9974 -17204.8 -34.9974 377103 185156 511027 54906914 6524451 1.579e+07 1.57144e+07 1.73164e+07 2396.73 43 37.5946 37.5946 -18163.7 -37.5946 -52.2272 -0.0851 15.43
-soft_fpu_arch_timing.xml bgm.v common 1381.80 25.53 397372 60 677.97 -1 -1 198084 -1 -1 17930 257 -1 -1 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_fpu_soft_logic_arch/run007/soft_fpu_arch_timing.xml/bgm.v/common 941704 257 32 62096 62128 1 47778 18219 136 136 18496 clb auto 15.84 598700 581.34 40.6175 -42909.1 -40.6175 971247 340469 1011134 105591814 12709686 4.11556e+07 4.1096e+07 4.47194e+07 2417.79 31 43.4142 43.4142 -45610.5 -43.4142 -79.3117 -0.0851 32.62
-soft_fpu_arch_timing.xml dscg.v common 218.88 3.44 166640 60 88.72 -1 -1 85520 -1 -1 6510 129 -1 -1 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_fpu_soft_logic_arch/run007/soft_fpu_arch_timing.xml/dscg.v/common 362464 129 64 22497 22561 1 17043 6703 83 83 6889 clb auto 4.58 211488 92.08 35.727 -15025.3 -35.727 353851 155280 452404 49831959 5827141 1.50382e+07 1.49214e+07 1.65016e+07 2395.36 37 38.6815 38.6815 -15914.7 -38.6815 -48.0364 -0.0851 13.31
-soft_fpu_arch_timing.xml fir.v common 203.98 2.91 147132 59 80.93 -1 -1 81552 -1 -1 6565 161 -1 -1 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_fpu_soft_logic_arch/run007/soft_fpu_arch_timing.xml/fir.v/common 364492 161 32 22903 22935 1 17506 6758 84 84 7056 clb auto 5.02 203899 85.99 34.467 -14743.1 -34.467 343991 161443 448499 46795749 5672656 1.54118e+07 1.50474e+07 1.69066e+07 2396.05 35 37.3323 37.3323 -15630.1 -37.3323 -51.5873 -0.0851 12.19
-soft_fpu_arch_timing.xml mm3.v common 111.52 1.48 107028 60 41.07 -1 -1 67068 -1 -1 4687 193 -1 -1 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_fpu_soft_logic_arch/run007/soft_fpu_arch_timing.xml/mm3.v/common 291816 193 32 16466 16498 1 12558 4912 71 71 5041 clb auto 3.39 144472 47.19 35.7479 -10616.6 -35.7479 243643 107135 300026 30691050 3729034 1.09126e+07 1.0743e+07 1.20254e+07 2385.52 26 38.366 38.366 -11248.8 -38.366 -30.5555 -0.0851 7.10
-soft_fpu_arch_timing.xml ode.v common 89.14 1.44 108120 59 31.97 -1 -1 53756 -1 -1 4036 130 -1 -1 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_fpu_soft_logic_arch/run007/soft_fpu_arch_timing.xml/ode.v/common 230240 130 72 14268 14340 1 10622 4238 66 66 4356 clb auto 2.75 124480 35.73 33.234 -11156.3 -33.234 208591 94664 268114 28283104 3422889 9.38847e+06 9.25095e+06 1.03689e+07 2380.36 33 36.0724 36.0724 -11724.5 -36.0724 -62.8441 -0.0851 6.95
-soft_fpu_arch_timing.xml syn2.v common 251.89 4.75 187236 60 107.19 -1 -1 90592 -1 -1 7226 161 -1 -1 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_fpu_soft_logic_arch/run007/soft_fpu_arch_timing.xml/syn2.v/common 386644 161 128 25115 25243 1 19176 7515 88 88 7744 clb auto 5.27 238778 100.95 36.1887 -19539.1 -36.1887 392464 188900 531400 55404964 6720407 1.69521e+07 1.65624e+07 1.85753e+07 2398.67 42 38.634 38.634 -20661.3 -38.634 -37.6131 -0.0851 15.57
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_qor_chain_predictor_off/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_qor_chain_predictor_off/config/golden_results.txt
deleted file mode 100644
index 8eac76261a2..00000000000
--- a/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_qor_chain_predictor_off/config/golden_results.txt
+++ /dev/null
@@ -1,22 +0,0 @@
-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_revision vpr_status hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks 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 placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_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 crit_path_route_time
-k6_frac_N10_frac_chain_mem32K_40nm.xml arm_core.v common 895.09 1.13 135296 18 62.39 -1 -1 68992 -1 -1 1035 133 40 0 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_qor_chain_predictor_off/run007/k6_frac_N10_frac_chain_mem32K_40nm.xml/arm_core.v/common 351720 133 179 18548 18330 1 9251 1387 44 44 1936 memory auto 22.21 152121 25.21 17.4482 -251432 -17.4482 104 222897 49 1.12988e+08 7.77019e+07 1.29301e+07 6678.75 725.26 203296 17 36967 135373 71046115 18534152 19.2499 19.2499 -284831 -19.2499 0 0 1.64104e+07 8476.43 16.72
-k6_frac_N10_frac_chain_mem32K_40nm.xml bgm.v common 605.45 10.17 382332 14 223.40 -1 -1 143204 -1 -1 2735 257 0 11 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_qor_chain_predictor_off/run007/k6_frac_N10_frac_chain_mem32K_40nm.xml/bgm.v/common 687108 257 32 36582 33970 1 19817 3035 63 63 3969 clb auto 57.31 262986 136.04 18.9887 -24255.7 -18.9887 76 404946 29 2.36641e+08 1.51758e+08 2.05973e+07 5189.55 117.21 382686 21 92597 414874 25552838 4184948 21.2902 21.2902 -26763.6 -21.2902 0 0 2.57532e+07 6488.59 12.69
-k6_frac_N10_frac_chain_mem32K_40nm.xml blob_merge.v common 114.14 0.38 52152 5 37.65 -1 -1 59556 -1 -1 620 36 0 0 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_qor_chain_predictor_off/run007/k6_frac_N10_frac_chain_mem32K_40nm.xml/blob_merge.v/common 181312 36 100 14037 11284 1 3208 756 31 31 961 clb auto 13.31 44352 9.20 13.3005 -2456.24 -13.3005 60 73963 41 5.14688e+07 3.34143e+07 3.85800e+06 4014.56 43.03 64078 15 12267 59048 2389421 313662 14.9619 14.9619 -2799.82 -14.9619 0 0 4.86014e+06 5057.38 1.44
-k6_frac_N10_frac_chain_mem32K_40nm.xml boundtop.v common 5.85 0.43 42484 3 0.41 -1 -1 37880 -1 -1 92 142 0 0 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_qor_chain_predictor_off/run007/k6_frac_N10_frac_chain_mem32K_40nm.xml/boundtop.v/common 43916 142 192 1071 1141 1 560 426 14 14 196 clb auto 0.61 1696 0.89 2.91391 -445.169 -2.91391 34 3981 14 9.20055e+06 4.95825e+06 429196. 2189.78 1.47 3444 14 1284 2018 93022 25079 3.39108 3.39108 -545.825 -3.39108 0 0 527839. 2693.05 0.07
-k6_frac_N10_frac_chain_mem32K_40nm.xml ch_intrinsics.v common 2.22 0.04 8880 3 0.20 -1 -1 36252 -1 -1 65 99 1 0 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_qor_chain_predictor_off/run007/k6_frac_N10_frac_chain_mem32K_40nm.xml/ch_intrinsics.v/common 36304 99 130 363 493 1 251 295 12 12 144 clb auto 0.14 635 0.44 1.86439 -198.325 -1.86439 48 1372 10 5.66058e+06 4.05111e+06 394078. 2736.65 0.47 1259 8 580 750 46400 15459 2.4004 2.4004 -228.324 -2.4004 0 0 503203. 3494.47 0.02
-k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq1.v common 7.26 0.03 8620 6 0.15 -1 -1 33744 -1 -1 32 162 0 5 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_qor_chain_predictor_off/run007/k6_frac_N10_frac_chain_mem32K_40nm.xml/diffeq1.v/common 50760 162 96 1075 884 1 667 295 16 16 256 mult_36 auto 0.32 4712 0.99 15.5225 -1169.15 -15.5225 58 10285 36 1.21132e+07 3.70461e+06 904541. 3533.36 4.03 8556 20 3284 5544 2043129 554084 17.2136 17.2136 -1394.48 -17.2136 0 0 1.15318e+06 4504.63 0.34
-k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq2.v common 11.88 0.03 7700 6 0.08 -1 -1 33368 -1 -1 21 66 0 7 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_qor_chain_predictor_off/run007/k6_frac_N10_frac_chain_mem32K_40nm.xml/diffeq2.v/common 56608 66 96 866 607 1 547 190 18 18 324 mult_36 auto 0.34 4587 0.98 12.1504 -713.843 -12.1504 58 9945 17 1.57076e+07 3.90377e+06 1.18151e+06 3646.63 8.48 9228 16 3038 6716 2931176 713747 13.3052 13.3052 -828.362 -13.3052 0 0 1.50617e+06 4648.66 0.39
-k6_frac_N10_frac_chain_mem32K_40nm.xml LU8PEEng.v common 549.15 5.39 219964 101 82.47 -1 -1 104084 -1 -1 2196 114 44 8 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_qor_chain_predictor_off/run007/k6_frac_N10_frac_chain_mem32K_40nm.xml/LU8PEEng.v/common 661648 114 102 38222 33863 1 17915 2464 57 57 3249 clb auto 69.53 230605 105.18 67.8974 -50466.8 -67.8974 98 337087 24 1.92089e+08 1.45633e+08 2.09305e+07 6442.12 234.20 315345 23 67456 257973 38614328 8845452 76.6465 76.6465 -64432.7 -76.6465 0 0 2.65396e+07 8168.55 14.23
-k6_frac_N10_frac_chain_mem32K_40nm.xml LU32PEEng.v common 3736.97 78.34 774772 97 822.81 -1 -1 319328 -1 -1 7491 114 167 32 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_qor_chain_predictor_off/run007/k6_frac_N10_frac_chain_mem32K_40nm.xml/LU32PEEng.v/common 2148072 114 102 124854 111149 1 59091 7906 102 102 10404 clb auto 220.04 1021773 752.26 68.7353 -327692 -68.7353 124 1400339 42 6.36957e+08 5.07872e+08 8.44220e+07 8114.38 1633.41 1323028 22 213582 894393 215512368 52740904 78.3285 78.3285 -462946 -78.3285 0 0 1.06940e+08 10278.8 77.35
-k6_frac_N10_frac_chain_mem32K_40nm.xml mcml.v common 5516.75 23.81 873912 24 3314.68 -1 -1 372876 -1 -1 7103 36 159 27 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_qor_chain_predictor_off/run007/k6_frac_N10_frac_chain_mem32K_40nm.xml/mcml.v/common 2417228 36 33 190959 166678 1 61855 7358 100 100 10000 clb auto 204.39 720967 928.73 40.562 -267244 -40.562 144 973829 23 6.13558e+08 4.80599e+08 9.27426e+07 9274.26 844.12 952625 19 224457 572557 97599831 22248863 42.7818 42.7818 -325949 -42.7818 0 0 1.17701e+08 11770.1 42.22
-k6_frac_N10_frac_chain_mem32K_40nm.xml mkDelayWorker32B.v common 53.93 0.73 77396 5 5.67 -1 -1 53036 -1 -1 461 506 44 0 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_qor_chain_predictor_off/run007/k6_frac_N10_frac_chain_mem32K_40nm.xml/mkDelayWorker32B.v/common 279036 506 553 3647 4145 1 3226 1564 50 50 2500 memory auto 3.48 13601 19.94 6.08775 -1550.27 -6.08775 36 19844 15 1.47946e+08 4.89577e+07 6.56144e+06 2624.58 11.62 19145 17 3663 3948 2937613 777328 6.57567 6.57567 -1925.51 -6.57567 0 0 8.08089e+06 3232.35 0.97
-k6_frac_N10_frac_chain_mem32K_40nm.xml mkPktMerge.v common 15.16 0.08 16512 2 0.07 -1 -1 34228 -1 -1 29 311 15 0 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_qor_chain_predictor_off/run007/k6_frac_N10_frac_chain_mem32K_40nm.xml/mkPktMerge.v/common 73624 311 156 1019 1160 1 965 511 28 28 784 memory auto 0.48 8153 2.52 4.22002 -4093.01 -4.22002 36 15311 21 4.25198e+07 9.78293e+06 1.94918e+06 2486.20 8.40 13835 15 3141 3497 2471675 732223 4.3128 4.3128 -4825.43 -4.3128 0 0 2.40571e+06 3068.51 0.46
-k6_frac_N10_frac_chain_mem32K_40nm.xml mkSMAdapter4B.v common 17.03 0.23 30812 4 1.78 -1 -1 39824 -1 -1 193 193 5 0 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_qor_chain_predictor_off/run007/k6_frac_N10_frac_chain_mem32K_40nm.xml/mkSMAdapter4B.v/common 73628 193 205 2926 2852 1 1459 596 20 20 400 memory auto 2.71 11319 2.73 4.81253 -2482.2 -4.81253 56 19845 40 2.07112e+07 1.31415e+07 1.41661e+06 3541.53 6.35 17515 14 5059 13150 1045879 229798 5.49755 5.49755 -2972.71 -5.49755 0 0 1.80858e+06 4521.44 0.37
-k6_frac_N10_frac_chain_mem32K_40nm.xml or1200.v common 38.99 0.34 40780 8 4.44 -1 -1 43476 -1 -1 252 385 2 1 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_qor_chain_predictor_off/run007/k6_frac_N10_frac_chain_mem32K_40nm.xml/or1200.v/common 118320 385 394 4676 4540 1 2422 1034 27 27 729 io auto 6.70 30721 6.78 8.14334 -9286.61 -8.14334 96 47243 43 3.93038e+07 1.50733e+07 4.41327e+06 6053.86 13.64 44156 17 9748 33997 3450207 672662 8.71082 8.71082 -10901.8 -8.71082 0 0 5.51931e+06 7571.08 1.12
-k6_frac_N10_frac_chain_mem32K_40nm.xml raygentop.v common 19.54 0.27 30380 3 1.03 -1 -1 40488 -1 -1 107 214 0 8 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_qor_chain_predictor_off/run007/k6_frac_N10_frac_chain_mem32K_40nm.xml/raygentop.v/common 73120 214 305 2964 2870 1 1438 634 19 19 361 io auto 2.15 11432 2.30 4.31218 -2475.36 -4.31218 58 24848 40 1.72706e+07 8.93466e+06 1.32779e+06 3678.09 10.22 20523 18 6049 13718 3496664 806645 4.78735 4.78735 -2995.2 -4.78735 0 0 1.69263e+06 4688.74 0.65
-k6_frac_N10_frac_chain_mem32K_40nm.xml sha.v common 258.12 0.66 36256 3 242.08 -1 -1 91696 -1 -1 156 38 0 0 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_qor_chain_predictor_off/run007/k6_frac_N10_frac_chain_mem32K_40nm.xml/sha.v/common 71848 38 36 2995 2744 1 1210 230 17 17 289 clb auto 1.86 11128 1.87 8.63389 -2451.33 -8.63389 74 16247 24 1.34605e+07 8.40746e+06 1.29327e+06 4475.00 6.14 15777 23 4883 12799 483157 82370 10.176 10.176 -2919.88 -10.176 0 0 1.62379e+06 5618.64 0.40
-k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common 11.49 0.15 19892 15 0.64 -1 -1 34916 -1 -1 65 45 3 1 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_qor_chain_predictor_off/run007/k6_frac_N10_frac_chain_mem32K_40nm.xml/spree.v/common 55908 45 32 1272 1229 1 833 146 14 14 196 memory auto 1.92 6988 0.96 9.64061 -6242.87 -9.64061 66 13351 40 9.20055e+06 5.54311e+06 787562. 4018.17 5.76 11538 15 3669 9746 1937246 486190 11.1216 11.1216 -7414.55 -11.1216 0 0 978561. 4992.66 0.36
-k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision0.v common 59.46 1.33 114700 5 8.68 -1 -1 71304 -1 -1 696 157 0 0 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_qor_chain_predictor_off/run007/k6_frac_N10_frac_chain_mem32K_40nm.xml/stereovision0.v/common 261868 157 197 23836 21789 1 6687 1050 33 33 1089 clb auto 7.37 42282 10.85 2.82114 -13257.5 -2.82114 56 64541 42 6.0475e+07 3.75104e+07 4.09277e+06 3758.28 17.38 58904 13 17710 26844 1085330 210691 3.65888 3.65888 -15377.6 -3.65888 0 0 5.21984e+06 4793.24 1.33
-k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision1.v common 147.26 1.07 96016 3 40.63 -1 -1 84564 -1 -1 678 115 0 40 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_qor_chain_predictor_off/run007/k6_frac_N10_frac_chain_mem32K_40nm.xml/stereovision1.v/common 289520 115 145 23136 19549 1 9677 978 40 40 1600 mult_36 auto 7.52 78441 13.38 4.93913 -22036.3 -4.93913 80 129728 44 9.16046e+07 5.23808e+07 8.41679e+06 5260.49 63.11 115884 16 33897 51943 20956027 4335055 5.28302 5.28302 -25453.5 -5.28302 0 0 1.06125e+07 6632.80 4.86
-k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision2.v common 445.94 1.50 147712 3 7.28 -1 -1 202116 -1 -1 1653 149 0 324 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_qor_chain_predictor_off/run007/k6_frac_N10_frac_chain_mem32K_40nm.xml/stereovision2.v/common 1346672 149 182 65737 42630 1 35961 2308 104 104 10816 mult_36 auto 24.51 354530 147.58 15.2766 -65075.8 -15.2766 80 479767 32 6.67561e+08 2.17385e+08 5.94869e+07 5499.90 171.55 459283 19 116678 136912 35553120 7131594 16.7863 16.7863 -76139.3 -16.7863 0 0 7.49726e+07 6931.63 12.42
-k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 1.73 0.05 9348 5 0.10 -1 -1 33252 -1 -1 14 11 0 0 v8.0.0-1603-g6c2a712a0 success betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr3/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_qor_chain_predictor_off/run007/k6_frac_N10_frac_chain_mem32K_40nm.xml/stereovision3.v/common 32700 11 30 313 321 2 117 55 7 7 49 clb auto 0.23 382 0.12 2.2748 -152.784 -2.2748 34 850 21 1.07788e+06 754516 84249.8 1719.38 0.33 685 9 365 632 21602 7821 2.54033 2.31797 -175.101 -2.54033 0 0 103542. 2113.11 0.02
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_titan/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_titan/config/config.txt
deleted file mode 100644
index b35806f42cc..00000000000
--- a/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_titan/config/config.txt
+++ /dev/null
@@ -1,63 +0,0 @@
-############################################
-# Configuration file for running experiments
-##############################################
-
-# Path to directory of circuits to use
-circuits_dir=benchmarks/titan_blif
-
-# Path to directory of architectures to use
-archs_dir=arch/titan
-
-# Add circuits to list to sweep
-# Note that the circuits are roughly sorted so that some small
-# circuits run first (to detect early failures), followed by larger
-# circuits (so they do not start last)
-
-#Largest benchmarks, which have potential to unroute or time-out
-circuit_list_add=gaussianblur_stratixiv_arch_timing.blif
-
-#Large benchmarks
-circuit_list_add=directrf_stratixiv_arch_timing.blif
-circuit_list_add=bitcoin_miner_stratixiv_arch_timing.blif
-circuit_list_add=LU230_stratixiv_arch_timing.blif
-circuit_list_add=sparcT1_chip2_stratixiv_arch_timing.blif
-circuit_list_add=LU_Network_stratixiv_arch_timing.blif
-
-#Small benchmarks
-circuit_list_add=neuron_stratixiv_arch_timing.blif
-circuit_list_add=sparcT1_core_stratixiv_arch_timing.blif
-circuit_list_add=stereo_vision_stratixiv_arch_timing.blif
-circuit_list_add=cholesky_mc_stratixiv_arch_timing.blif
-
-#Mixed order of large and small
-circuit_list_add=gsm_switch_stratixiv_arch_timing.blif
-circuit_list_add=mes_noc_stratixiv_arch_timing.blif
-circuit_list_add=dart_stratixiv_arch_timing.blif
-circuit_list_add=denoise_stratixiv_arch_timing.blif
-circuit_list_add=sparcT2_core_stratixiv_arch_timing.blif
-circuit_list_add=cholesky_bdti_stratixiv_arch_timing.blif
-circuit_list_add=minres_stratixiv_arch_timing.blif
-circuit_list_add=stap_qrd_stratixiv_arch_timing.blif
-circuit_list_add=openCV_stratixiv_arch_timing.blif
-circuit_list_add=bitonic_mesh_stratixiv_arch_timing.blif
-circuit_list_add=segmentation_stratixiv_arch_timing.blif
-circuit_list_add=SLAM_spheric_stratixiv_arch_timing.blif
-circuit_list_add=des90_stratixiv_arch_timing.blif
-
-# Add architectures to list to sweep
-arch_list_add=stratixiv_arch.timing.xml
-
-# Parse info and how to parse
-parse_file=vpr_titan.txt
-
-# How to parse QoR info
-qor_parse_file=qor_vpr_titan.txt
-
-# Pass requirements
-pass_requirements_file=pass_requirements_vpr_titan.txt
-
-#The Titan benchmarks are run at a fixed channel width of 300 to simulate a Stratix IV-like routing architecture
-#A large number of routing iterations is set to ensure the router doesn't give up to easily on the larger benchmarks
-#To be more run-time comparable to commercial tools like Quartus, we run with higher placer effort (inner_num=2) and lower astar_fac (1.0)
-#Set a 48hr timeout so they don't run forever
-script_params=-starting_stage vpr --route_chan_width 300 --max_router_iterations 400 --router_lookahead map -timeout 172800
diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_titan/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_titan/config/golden_results.txt
deleted file mode 100644
index 1b774cce5f2..00000000000
--- a/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_titan/config/golden_results.txt
+++ /dev/null
@@ -1,24 +0,0 @@
-arch circuit script_params vtr_flow_elapsed_time error num_io num_LAB num_DSP num_M9K num_M144K num_PLL vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_time placed_wirelength_est place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time routed_wirelength total_nets_routed total_connections_routed total_heap_pushes total_heap_pops logic_block_area_total logic_block_area_used routing_area_total routing_area_per_tile crit_path_route_success_iteration critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time
-stratixiv_arch.timing.xml gaussianblur_stratixiv_arch_timing.blif common 54325.83 558 104911 2 12 0 0 success v8.0.0-2036-gb5ccf1b32 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-06-08T11:35:48 betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_titan/run008/stratixiv_arch.timing.xml/gaussianblur_stratixiv_arch_timing.blif/common 29335900 166 392 1872320 1859014 1 1211091 105483 399 296 118104 LAB auto 7674.05 22599907 42575.87 224.79 878.625 -7.86417e+07 -878.625 878.625 5.11373 3.2867 820.494 533.01 31535329 3964408 20296950 10275455254 1382785116 0 0 2.38992e+09 20235.7 24 870.539 870.539 -1.11959e+08 -870.539 0 0 1700.31 1134.94 777.934
-stratixiv_arch.timing.xml directrf_stratixiv_arch_timing.blif common 17102.08 319 61450 240 2535 0 0 success v8.0.0-2036-gb5ccf1b32 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-06-08T11:35:48 betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_titan/run008/stratixiv_arch.timing.xml/directrf_stratixiv_arch_timing.blif/common 17934728 62 257 1374456 930989 2 679939 64544 317 235 74495 M9K auto 997.77 12249060 13596.14 64.56 10.4806 -2.80095e+06 -10.4806 9.39137 2.33826 1.74501 460.458 327.913 13955806 1895607 3396577 5132904157 840202091 0 0 1.42890e+09 19181.1 15 11.4112 10.0672 -3.60917e+06 -11.4112 0 0 981.11 567.373 416.71
-stratixiv_arch.timing.xml bitcoin_miner_stratixiv_arch_timing.blif common 16110.51 385 32463 0 1331 0 1 success v8.0.0-2036-gb5ccf1b32 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-06-08T11:35:48 betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_titan/run008/stratixiv_arch.timing.xml/bitcoin_miner_stratixiv_arch_timing.blif/common 12276260 353 32 1446409 1087537 2 848822 34180 225 167 37575 LAB auto 801.12 10288275 13797.35 82.94 6.849 -1.58449e+06 -6.849 0.789461 2.21826 1.56866 331.226 234.44 11623988 2630178 3848392 4044615549 610108617 0 0 7.28440e+08 19386.3 34 8.78656 0.992725 -2.08083e+06 -8.78656 0 0 681.80 524.146 388.921
-stratixiv_arch.timing.xml LU230_stratixiv_arch_timing.blif common 8480.17 373 16585 116 5040 16 0 success v8.0.0-2036-gb5ccf1b32 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-06-08T11:35:48 betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_titan/run008/stratixiv_arch.timing.xml/LU230_stratixiv_arch_timing.blif/common 18015052 178 195 663067 568001 2 413013 22130 430 319 137170 M9K auto 1009.96 15088834 4398.96 22.14 24.2639 -4.46683e+06 -24.2639 9.92669 2.07434 1.52222 344.961 243.172 17214668 1167740 2323256 3021870810 553369148 0 0 2.85688e+09 20827.3 16 24.5892 10.6449 -7.49842e+06 -24.5892 0 0 584.00 439.605 321.432
-stratixiv_arch.timing.xml sparcT1_chip2_stratixiv_arch_timing.blif common 22492.00 1891 33543 3 506 0 0 success v8.0.0-2036-gb5ccf1b32 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-06-08T11:35:48 betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_titan/run008/stratixiv_arch.timing.xml/sparcT1_chip2_stratixiv_arch_timing.blif/common 12158512 815 1076 764693 760412 1423 418656 35943 279 207 57753 io auto 1537.21 6558526 6894.16 45.35 20.9235 -5.29225e+06 -20.9235 1.14034 6.78305 6.11403 909.498 812.868 7946954 1202979 3951674 2591649337 315911324 0 0 1.11162e+09 19247.9 27 21.6103 1.22526 -6.10548e+06 -21.6103 0 0 676.51 1324.19 1196.64
-stratixiv_arch.timing.xml LU_Network_stratixiv_arch_timing.blif common 7242.78 405 31090 112 1175 0 2 success v8.0.0-2036-gb5ccf1b32 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-06-08T11:35:48 betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_titan/run008/stratixiv_arch.timing.xml/LU_Network_stratixiv_arch_timing.blif/common 10661404 85 185 721554 630079 28 404578 32784 220 163 35860 LAB auto 800.40 4562111 5383.15 29.18 6.64648 -1.81662e+06 -6.64648 1.10615 2.17246 1.58126 356.085 253.59 5751752 895421 1893895 1742751851 293521170 0 0 6.95754e+08 19402.0 18 7.44247 1.15999 -2.1301e+06 -7.44247 0 0 305.92 466.344 344.374
-stratixiv_arch.timing.xml neuron_stratixiv_arch_timing.blif common 518.46 77 3116 89 136 0 0 success v8.0.0-2036-gb5ccf1b32 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-06-08T11:35:48 betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_titan/run008/stratixiv_arch.timing.xml/neuron_stratixiv_arch_timing.blif/common 2829520 42 35 119888 86875 1 51143 3418 129 96 12384 DSP auto 84.24 578032 170.75 0.80 7.51447 -217377 -7.51447 7.51447 0.195447 0.170063 29.381 23.9048 751169 106182 174573 247181469 51951277 0 0 2.43110e+08 19631.0 12 8.10257 8.10257 -276029 -8.10257 0 0 35.82 38.5637 32.1671
-stratixiv_arch.timing.xml sparcT1_core_stratixiv_arch_timing.blif common 757.23 310 3932 1 128 0 0 success v8.0.0-2036-gb5ccf1b32 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-06-08T11:35:48 betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_titan/run008/stratixiv_arch.timing.xml/sparcT1_core_stratixiv_arch_timing.blif/common 2105040 173 137 92814 91975 1 57417 4371 82 61 5002 LAB auto 261.98 919207 323.79 2.11 7.91799 -521189 -7.91799 7.91799 0.206145 0.166551 32.5505 22.4246 1242109 219480 781234 594257462 77905583 0 0 9.74073e+07 19473.7 18 8.2717 8.2717 -617668 -8.2717 0 0 68.62 45.6556 33.2682
-stratixiv_arch.timing.xml stereo_vision_stratixiv_arch_timing.blif common 497.13 506 3238 76 113 0 0 success v8.0.0-2036-gb5ccf1b32 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-06-08T11:35:48 betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_titan/run008/stratixiv_arch.timing.xml/stereo_vision_stratixiv_arch_timing.blif/common 2653952 172 334 127090 94090 3 61780 3933 129 96 12384 DSP auto 69.34 552796 175.69 0.91 7.90709 -147122 -7.90709 3.04131 0.177697 0.127749 24.0684 16.9072 624560 132182 196043 182850215 26539188 0 0 2.43110e+08 19631.0 15 8.1769 3.21988 -170761 -8.1769 0 0 24.76 32.6189 24.1721
-stratixiv_arch.timing.xml cholesky_mc_stratixiv_arch_timing.blif common 696.79 262 4746 59 444 16 0 success v8.0.0-2036-gb5ccf1b32 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-06-08T11:35:48 betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_titan/run008/stratixiv_arch.timing.xml/cholesky_mc_stratixiv_arch_timing.blif/common 3080780 111 151 140214 108592 1 66048 5527 125 93 11625 M9K auto 113.07 828961 269.67 1.49 6.72673 -426254 -6.72673 6.72673 0.240206 0.200394 38.8911 28.8483 1172151 156587 347763 595805524 139369856 0 0 2.28063e+08 19618.3 18 7.38873 7.38873 -555508 -7.38873 0 0 99.34 54.0613 41.8143
-stratixiv_arch.timing.xml gsm_switch_stratixiv_arch_timing.blif common 4390.61 136 21477 0 1848 0 1 success v8.0.0-2036-gb5ccf1b32 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-06-08T11:35:48 betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_titan/run008/stratixiv_arch.timing.xml/gsm_switch_stratixiv_arch_timing.blif/common 9538416 100 36 504627 490068 5 201500 23462 255 189 48195 M9K auto 704.57 4224517 2604.99 14.32 9.5402 -2.51832e+06 -9.5402 3.85175 1.04032 0.748215 183.449 119.348 5338922 506559 1537118 1158593253 187016053 0 0 9.29962e+08 19295.8 14 10.1644 4.20583 -3.15938e+06 -10.1644 0 0 205.04 234.804 161.067
-stratixiv_arch.timing.xml mes_noc_stratixiv_arch_timing.blif common 7590.45 5 23767 0 800 0 8 success v8.0.0-2036-gb5ccf1b32 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-06-08T11:35:48 betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_titan/run008/stratixiv_arch.timing.xml/mes_noc_stratixiv_arch_timing.blif/common 8769136 3 2 577696 547568 17 346014 24580 193 143 27599 LAB auto 1340.26 3807488 5325.21 34.17 13.112 -4.19166e+06 -13.112 8.499 2.12067 1.4885 295.505 205.797 5089474 857934 2524901 2168308749 242372215 0 0 5.39298e+08 19540.5 17 14.2152 9.0782 -4.90118e+06 -14.2152 0 0 340.10 396.281 288.589
-stratixiv_arch.timing.xml dart_stratixiv_arch_timing.blif common 1576.90 69 7014 0 530 0 0 success v8.0.0-2036-gb5ccf1b32 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-06-08T11:35:48 betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_titan/run008/stratixiv_arch.timing.xml/dart_stratixiv_arch_timing.blif/common 3972660 23 46 223304 202401 1 132117 7613 138 102 14076 M9K auto 364.81 1915296 839.36 5.56 13.8661 -1.5694e+06 -13.8661 13.8661 0.5488 0.420259 79.6996 55.5284 2315178 365188 928257 800073199 105465602 0 0 2.76641e+08 19653.4 15 14.4922 14.4922 -1.91254e+06 -14.4922 0 0 108.77 108.946 80.125
-stratixiv_arch.timing.xml denoise_stratixiv_arch_timing.blif common 4867.02 852 14045 24 359 0 0 success v8.0.0-2036-gb5ccf1b32 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-06-08T11:35:48 betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_titan/run008/stratixiv_arch.timing.xml/denoise_stratixiv_arch_timing.blif/common 5469508 264 588 355537 274786 1 219008 15280 150 111 16650 LAB auto 380.61 2657013 3839.19 22.32 886.392 -1.09452e+06 -886.392 886.392 0.866923 0.630033 128.85 93.3497 3208108 927383 2877986 2387152428 278024256 0 0 3.27533e+08 19671.7 24 873.404 873.404 -1.30496e+06 -873.404 0 0 262.02 184.444 138.199
-stratixiv_arch.timing.xml sparcT2_core_stratixiv_arch_timing.blif common 3866.21 451 14741 0 260 0 0 success v8.0.0-2036-gb5ccf1b32 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-06-08T11:35:48 betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_titan/run008/stratixiv_arch.timing.xml/sparcT2_core_stratixiv_arch_timing.blif/common 5049644 239 212 302755 300220 1 185037 15452 153 113 17289 LAB auto 673.81 3685890 2546.25 19.15 10.9188 -1.01249e+06 -10.9188 10.9188 0.76817 0.592124 111.324 78.1221 4699882 676774 2611591 2091540827 275972166 0 0 3.40245e+08 19679.8 20 11.4723 11.4723 -1.32008e+06 -11.4723 0 0 290.48 160.268 117.566
-stratixiv_arch.timing.xml cholesky_bdti_stratixiv_arch_timing.blif common 1914.49 162 9699 132 600 0 0 success v8.0.0-2036-gb5ccf1b32 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-06-08T11:35:48 betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_titan/run008/stratixiv_arch.timing.xml/cholesky_bdti_stratixiv_arch_timing.blif/common 5248444 94 68 331744 255478 1 156337 10593 169 125 21125 DSP auto 283.47 1829761 995.39 5.97 8.46905 -1.02346e+06 -8.46905 8.46905 0.54146 0.4403 85.9673 62.5028 2522901 376004 795047 1333683528 287660368 0 0 4.15904e+08 19687.8 19 9.034 9.034 -1.37038e+06 -9.034 0 0 210.53 120.705 92.2217
-stratixiv_arch.timing.xml minres_stratixiv_arch_timing.blif common 2331.85 229 7827 78 1459 0 1 success v8.0.0-2036-gb5ccf1b32 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-06-08T11:35:48 betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_titan/run008/stratixiv_arch.timing.xml/minres_stratixiv_arch_timing.blif/common 6654196 129 100 316623 257480 3 183891 9594 225 167 37575 M9K auto 353.91 2247326 1126.37 6.18 8.3053 -735956 -8.3053 4.79086 0.724682 0.524834 107.119 78.3004 2968490 417129 825315 916680596 166487995 0 0 7.28440e+08 19386.3 13 8.93194 5.11164 -961199 -8.93194 0 0 142.82 138.092 104.616
-stratixiv_arch.timing.xml stap_qrd_stratixiv_arch_timing.blif common 2445.28 150 15893 75 553 0 0 success v8.0.0-2036-gb5ccf1b32 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-06-08T11:35:48 betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_titan/run008/stratixiv_arch.timing.xml/stap_qrd_stratixiv_arch_timing.blif/common 4663808 68 82 284051 234177 1 143550 16671 158 117 18486 LAB auto 256.46 2168655 1692.60 8.52 6.26249 -853337 -6.26249 6.26249 0.503327 0.40387 93.8759 68.482 2720473 333016 841070 952749766 172532608 0 0 3.64007e+08 19691.0 16 6.8316 6.8316 -1.14133e+06 -6.8316 0 0 142.97 123.73 92.9597
-stratixiv_arch.timing.xml openCV_stratixiv_arch_timing.blif common 2031.20 208 7151 213 785 40 0 success v8.0.0-2036-gb5ccf1b32 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-06-08T11:35:48 betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_titan/run008/stratixiv_arch.timing.xml/openCV_stratixiv_arch_timing.blif/common 5976520 106 102 279132 212552 1 168734 8397 209 155 32395 DSP auto 320.65 2685497 905.34 6.58 10.4525 -1.03507e+06 -10.4525 10.4525 0.59565 0.497014 88.4703 66.6987 3407017 472493 1044513 1309875731 245229707 0 0 6.29758e+08 19440.0 14 11.2704 11.2704 -1.31974e+06 -11.2704 0 0 211.29 118.186 92.1362
-stratixiv_arch.timing.xml bitonic_mesh_stratixiv_arch_timing.blif common 2709.50 119 7206 85 1664 0 0 success v8.0.0-2036-gb5ccf1b32 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-06-08T11:35:48 betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_titan/run008/stratixiv_arch.timing.xml/bitonic_mesh_stratixiv_arch_timing.blif/common 6948252 87 32 233978 190746 1 147040 9074 242 179 43318 M9K auto 483.88 3881388 1155.53 8.46 13.048 -1.96544e+06 -13.048 13.048 0.873846 0.633046 112.738 82.4582 5007121 520235 1675441 1922751757 348954514 0 0 8.37664e+08 19337.6 16 13.6482 13.6482 -2.34229e+06 -13.6482 0 0 297.31 155.456 118.855
-stratixiv_arch.timing.xml segmentation_stratixiv_arch_timing.blif common 1660.86 441 6925 15 481 0 0 success v8.0.0-2036-gb5ccf1b32 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-06-08T11:35:48 betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_titan/run008/stratixiv_arch.timing.xml/segmentation_stratixiv_arch_timing.blif/common 3561688 72 369 178312 137832 1 108441 7862 136 101 13736 M9K auto 183.73 1331079 1082.53 6.17 874.166 -476778 -874.166 874.166 0.391911 0.284246 58.5934 42.7101 1680683 464528 1463960 1248508067 148195106 0 0 2.69876e+08 19647.3 24 855.619 855.619 -596430 -855.619 0 0 132.76 83.7489 63.0299
-stratixiv_arch.timing.xml SLAM_spheric_stratixiv_arch_timing.blif common 1063.73 479 5394 37 0 0 0 success v8.0.0-2036-gb5ccf1b32 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-06-08T11:35:48 betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_titan/run008/stratixiv_arch.timing.xml/SLAM_spheric_stratixiv_arch_timing.blif/common 2578224 323 156 140638 111354 1 76831 5910 95 70 6650 LAB auto 184.85 1130777 653.72 3.20 81.2267 -347590 -81.2267 81.2267 0.326305 0.235822 49.7434 35.7233 1454555 238013 787994 746060068 105389867 0 0 1.29896e+08 19533.2 18 79.833 79.833 -380596 -79.833 0 0 86.07 66.951 50.0447
-stratixiv_arch.timing.xml des90_stratixiv_arch_timing.blif common 1255.90 117 4186 44 860 0 0 success v8.0.0-2036-gb5ccf1b32 release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-60-generic x86_64 2020-06-08T11:35:48 betzgrp-wintermute.eecg.utoronto.ca /home/kmurray/trees/vtr/vtr_flow/tasks/regression_tests/vtr_reg_weekly/vtr_reg_titan/run008/stratixiv_arch.timing.xml/des90_stratixiv_arch_timing.blif/common 4065000 85 32 138853 110549 1 88035 5207 171 127 21717 M9K auto 263.18 1733266 449.95 2.74 11.7913 -1.0041e+06 -11.7913 11.7913 0.386353 0.325799 55.6199 41.6631 2354585 295453 903620 954811942 172128166 0 0 4.27406e+08 19680.7 18 12.4542 12.4542 -1.16595e+06 -12.4542 0 0 135.86 79.3483 62.145
diff --git a/vtr_flow/tasks/timing/config/golden_results.txt b/vtr_flow/tasks/timing/config/golden_results.txt
deleted file mode 100644
index 57a6c6b4571..00000000000
--- a/vtr_flow/tasks/timing/config/golden_results.txt
+++ /dev/null
@@ -1,21 +0,0 @@
-arch circuit vpr_status min_chan_width critical_path_delay pack_time place_time min_chan_width_route_time crit_path_route_time routed_wirelength num_pre_packed_nets num_pre_packed_blocks num_post_packed_nets num_clb num_io num_outputs num_memories num_mult num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length error
-k6_frac_N10_mem32K_40nm.xml arm_core.v success 114 18.5971 37.65 57.42 755.52 35.40 257516 19617 19796 9200 1073 133 179 40 0 -1 -1 -1 -1 -1
-k6_frac_N10_mem32K_40nm.xml bgm.v success 106 20.8882 56.82 102.09 217.25 15.87 405780 26797 26312 14500 1969 257 32 0 11 -1 -1 -1 -1 -1
-k6_frac_N10_mem32K_40nm.xml blob_merge.v success 74 10.6432 9.70 9.50 34.51 2.39 80984 6406 6506 2880 520 36 100 0 0 -1 -1 -1 -1 -1
-k6_frac_N10_mem32K_40nm.xml boundtop.v success 60 5.84455 3.55 3.50 6.89 0.71 24578 4028 4220 1851 192 275 192 1 0 -1 -1 -1 -1 -1
-k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v success 42 3.5255 0.16 0.28 0.70 0.07 2555 419 549 298 19 99 130 1 0 -1 -1 -1 -1 -1
-k6_frac_N10_mem32K_40nm.xml diffeq1.v success 50 22.4462 0.44 0.85 3.96 0.66 13929 1001 938 708 36 162 96 0 5 -1 -1 -1 -1 -1
-k6_frac_N10_mem32K_40nm.xml diffeq2.v success 46 18.0707 0.36 0.82 8.78 0.68 10911 651 587 469 25 66 96 0 5 -1 -1 -1 -1 -1
-k6_frac_N10_mem32K_40nm.xml LU8PEEng.v success 126 111.704 49.12 85.69 1141.42 39.38 458276 30101 29827 16737 1818 114 102 44 8 -1 -1 -1 -1 -1
-k6_frac_N10_mem32K_40nm.xml LU32PEEng.v success 214 112.149 216.37 672.65 42959.31 541.72 2102620 100107 98705 55230 6212 114 102 167 32 -1 -1 -1 -1 -1
-k6_frac_N10_mem32K_40nm.xml mcml.v success 114 76.8248 142.48 433.82 6731.23 116.97 1186665 149022 147480 48186 6016 36 33 159 27 -1 -1 -1 -1 -1
-k6_frac_N10_mem32K_40nm.xml mkDelayWorker32B.v success 38 8.1742 2.65 10.75 22.32 2.64 38427 3923 4476 3430 111 506 553 44 0 -1 -1 -1 -1 -1
-k6_frac_N10_mem32K_40nm.xml mkPktMerge.v success 40 4.96958 0.57 1.59 14.17 1.00 15109 978 1134 953 11 311 156 15 0 -1 -1 -1 -1 -1
-k6_frac_N10_mem32K_40nm.xml mkSMAdapter4B.v success 52 5.2635 2.19 2.37 7.09 0.68 19845 2635 2840 1323 124 193 205 5 0 -1 -1 -1 -1 -1
-k6_frac_N10_mem32K_40nm.xml or1200.v success 76 14.1005 4.55 6.46 65.23 2.07 61556 4181 4512 2440 247 385 394 2 1 -1 -1 -1 -1 -1
-k6_frac_N10_mem32K_40nm.xml raygentop.v success 72 5.25213 3.16 3.74 17.84 1.77 33443 3827 3943 1911 170 239 305 1 7 -1 -1 -1 -1 -1
-k6_frac_N10_mem32K_40nm.xml sha.v success 58 14.3193 2.29 2.37 10.43 0.62 22742 3185 3221 1285 182 38 36 0 0 -1 -1 -1 -1 -1
-k6_frac_N10_mem32K_40nm.xml stereovision0.v success 58 4.19256 9.46 17.05 23.40 2.36 87252 23659 23856 7356 833 157 197 0 0 -1 -1 -1 -1 -1
-k6_frac_N10_mem32K_40nm.xml stereovision1.v success 104 6.04754 12.70 23.43 149.20 11.03 188062 24212 22077 11123 911 133 145 0 38 -1 -1 -1 -1 -1
-k6_frac_N10_mem32K_40nm.xml stereovision2.v success 138 16.4898 33.34 123.74 4370.02 56.33 801246 55423 46443 33203 2263 149 182 0 201 -1 -1 -1 -1 -1
-k6_frac_N10_mem32K_40nm.xml stereovision3.v success 36 2.97931 0.14 0.11 0.29 0.03 811 287 317 115 12 11 30 0 0 -1 -1 -1 -1 -1
diff --git a/vtr_flow/tasks/timing_chain/config/golden_results.txt b/vtr_flow/tasks/timing_chain/config/golden_results.txt
deleted file mode 100644
index b1f34dc8334..00000000000
--- a/vtr_flow/tasks/timing_chain/config/golden_results.txt
+++ /dev/null
@@ -1,21 +0,0 @@
-arch circuit vpr_status min_chan_width critical_path_delay pack_time place_time min_chan_width_route_time crit_path_route_time routed_wirelength num_pre_packed_nets num_pre_packed_blocks num_post_packed_nets num_clb num_io num_outputs num_memories num_mult num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length error
-k6_frac_N10_frac_chain_mem32K_40nm.xml arm_core.v success 110 20.5369 62.73 58.18 683.52 27.83 248987 20229 20011 9198 1069 133 179 40 0 -1 435 35 36 27
-k6_frac_N10_frac_chain_mem32K_40nm.xml bgm.v success 84 23.4729 88.07 111.01 174.38 13.79 377364 29851 27995 15552 2095 257 32 0 11 -1 2198 25 3240 10
-k6_frac_N10_frac_chain_mem32K_40nm.xml blob_merge.v success 72 15.2812 32.00 11.57 42.85 2.73 103148 12387 9631 3825 611 36 100 0 0 -1 538 13 3216 12
-k6_frac_N10_frac_chain_mem32K_40nm.xml boundtop.v success 58 5.86811 5.31 3.81 4.55 0.70 24591 4608 4563 1980 204 275 192 1 0 -1 218 19 91 15
-k6_frac_N10_frac_chain_mem32K_40nm.xml ch_intrinsics.v success 44 3.56986 0.24 0.27 0.67 0.07 2342 419 549 296 19 99 130 1 0 -1 0 0 0 0
-k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq1.v success 48 17.5333 0.56 0.78 8.15 0.69 13848 1066 879 661 30 162 96 0 5 -1 66 33 66 33
-k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq2.v success 48 13.0202 0.26 0.64 9.33 0.69 9625 781 593 471 20 66 96 0 5 -1 66 33 66 33
-k6_frac_N10_frac_chain_mem32K_40nm.xml LU8PEEng.v success 120 86.5162 96.56 124.76 985.87 33.32 427271 35117 32079 16620 2016 114 102 44 8 -1 1359 26 1892 47
-k6_frac_N10_frac_chain_mem32K_40nm.xml LU32PEEng.v success 196 85.5651 394.73 993.69 49684.87 338.31 2103755 114032 105592 53836 6769 114 102 167 32 -1 3671 26 4578 47
-k6_frac_N10_frac_chain_mem32K_40nm.xml mcml.v success 128 45.3524 256.95 759.11 5438.61 149.65 1290551 187219 163035 60168 6116 36 33 159 27 -1 9131 65 15178 65
-k6_frac_N10_frac_chain_mem32K_40nm.xml mkDelayWorker32B.v success 40 8.48925 3.15 10.12 20.52 2.04 37914 4161 4658 3500 117 506 553 44 0 -1 734 33 82 17
-k6_frac_N10_frac_chain_mem32K_40nm.xml mkPktMerge.v success 40 4.54311 0.72 1.42 9.18 0.86 15156 1019 1160 963 12 311 156 15 0 -1 45 5 0 0
-k6_frac_N10_frac_chain_mem32K_40nm.xml mkSMAdapter4B.v success 58 5.4566 4.64 2.44 7.37 0.69 23530 3230 3155 1548 143 193 205 5 0 -1 365 33 66 17
-k6_frac_N10_frac_chain_mem32K_40nm.xml or1200.v success 86 9.7377 7.84 5.90 34.79 1.87 55683 4903 4736 2602 242 385 394 2 1 -1 360 65 174 65
-k6_frac_N10_frac_chain_mem32K_40nm.xml raygentop.v success 72 4.88307 3.48 3.66 13.76 1.53 35142 4606 4224 2222 184 239 305 1 8 -1 530 32 50 16
-k6_frac_N10_frac_chain_mem32K_40nm.xml sha.v success 62 10.3457 3.04 2.08 7.50 0.66 20526 3318 3067 1206 167 38 36 0 0 -1 305 33 4 4
-k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision0.v success 56 4.58963 9.08 12.76 23.80 1.93 73194 26293 24246 6736 833 157 197 0 0 -1 2802 18 118 18
-k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision1.v success 100 6.04865 9.95 16.05 116.17 8.27 163598 25666 22079 10440 901 133 145 0 38 -1 2340 19 48 2
-k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision2.v success 124 15.2419 28.80 97.59 1621.72 51.23 687512 64376 43213 34107 1882 149 182 0 201 -1 13267 32 576 32
-k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v success 36 3.25614 0.36 0.12 0.38 0.04 1221 352 360 150 15 11 30 0 0 -1 28 11 0 0
diff --git a/vtr_flow/tasks/timing_small/config/golden_results.txt b/vtr_flow/tasks/timing_small/config/golden_results.txt
deleted file mode 100644
index ad3a8eae515..00000000000
--- a/vtr_flow/tasks/timing_small/config/golden_results.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-arch circuit vpr_revision vpr_status error num_pre_packed_nets num_pre_packed_blocks num_post_packed_nets num_post_packed_blocks device_width device_height num_clb num_io num_outputs num_memories num_mult placed_wirelength_est placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est min_chan_width routed_wirelength min_chan_width_route_success_iteration crit_path_routed_wirelength crit_path_route_success_iteration critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile crit_path_routing_area_total crit_path_routing_area_per_tile odin_synth_time abc_synth_time abc_cec_time abc_sec_time ace_time pack_time place_time min_chan_width_route_time crit_path_route_time vtr_flow_elapsed_time max_vpr_mem max_odin_mem max_abc_mem
-k6_frac_N10_mem32K_40nm.xml blob_merge.v 30d086154 success 6406 6506 2880 656 29 29 520 36 100 0 0 100779 8.85445 -2577.18 -8.85445 74 80984 11 77336 13 10.6432 -2881.52 -10.6432 0 0 4.4999e+07 2.80249e+07 4.04182e+06 4805.97 5.07312e+06 6032.25 0.33 0.12 -1 -1 -1 14.01 13.77 53.72 3.88 98.97 -1 -1 -1
-k6_frac_N10_mem32K_40nm.xml boundtop.v 30d086154 success 4028 4220 1851 660 18 18 192 275 192 1 0 32588 5.01577 -4623.72 -5.01577 60 24578 14 21279 17 5.84455 -5219.63 -5.84455 -0.0211448 -0.0144466 1.57076e+07 1.08956e+07 1.22123e+06 3769.23 1.53793e+06 4746.71 0.50 0.09 -1 -1 -1 5.39 5.65 10.56 0.99 26.85 -1 -1 -1
-k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v 30d086154 success 419 549 298 249 10 10 19 99 130 1 0 2262 2.74023 -250.655 -2.74023 42 2555 21 2250 12 3.5255 -318.677 -3.5255 0 0 3.92691e+06 1.57199e+06 236681. 2366.81 297605. 2976.05 0.05 0.01 -1 -1 -1 0.19 0.46 0.87 0.13 2.60 -1 -1 -1
-k6_frac_N10_mem32K_40nm.xml diffeq1.v 30d086154 success 1001 938 708 299 16 16 36 162 96 0 5 10296 19.5971 -1477.51 -19.5971 50 13929 27 10621 23 22.4462 -1741.17 -22.4462 0 0 1.21132e+07 3.92018e+06 780512. 3048.87 1.03597e+06 4046.75 0.04 0.00 -1 -1 -1 0.52 1.21 5.98 1.14 10.14 -1 -1 -1
-k6_frac_N10_mem32K_40nm.xml diffeq2.v 30d086154 success 651 587 469 192 16 16 25 66 96 0 5 7349 15.6403 -875.132 -15.6403 46 10911 45 8624 22 18.0707 -1038.63 -18.0707 0 0 1.21132e+07 3.32735e+06 727248. 2840.81 934704. 3651.19 0.02 0.00 -1 -1 -1 0.43 0.93 12.78 1.24 16.52 -1 -1 -1
-k6_frac_N10_mem32K_40nm.xml mkDelayWorker32B.v 30d086154 success 3923 4476 3430 1214 50 50 111 506 553 44 0 82124 7.71157 -2076.11 -7.71157 38 38427 15 36529 19 8.1742 -2382.87 -8.1742 -12.1939 -0.29436 1.47946e+08 3.00942e+07 6.86584e+06 2746.33 8.69095e+06 3476.38 1.08 0.14 -1 -1 -1 3.50 15.30 31.44 3.88 62.00 -1 -1 -1
-k6_frac_N10_mem32K_40nm.xml mkPktMerge.v 30d086154 success 978 1134 953 493 28 28 11 311 156 15 0 21490 4.57794 -4412.53 -4.57794 40 15109 13 13720 14 4.96958 -5017.29 -4.96958 -18.7112 -0.341744 4.25198e+07 8.81283e+06 2.13295e+06 2720.61 2.67004e+06 3405.67 0.25 0.02 -1 -1 -1 0.88 2.35 20.11 1.51 26.44 -1 -1 -1
-k6_frac_N10_mem32K_40nm.xml mkSMAdapter4B.v 30d086154 success 2635 2840 1323 527 20 20 124 193 205 5 0 24074 4.79897 -3057.27 -4.79897 52 19845 44 17520 15 5.2635 -3476.07 -5.2635 -11.0596 -0.339827 2.07112e+07 9.42286e+06 1.31074e+06 3276.84 1.72518e+06 4312.96 0.25 0.05 -1 -1 -1 2.82 3.34 10.23 0.99 20.64 -1 -1 -1
-k6_frac_N10_mem32K_40nm.xml or1200.v 30d086154 success 4181 4512 2440 1029 27 27 247 385 394 2 1 70507 12.5957 -12523.3 -12.5957 76 61556 12 50055 15 14.1005 -13933.5 -14.1005 0 0 3.93038e+07 1.48038e+07 3.58343e+06 4915.54 4.48127e+06 6147.14 0.54 0.08 -1 -1 -1 6.27 9.85 84.54 2.53 108.36 -1 -1 -1
-k6_frac_N10_mem32K_40nm.xml raygentop.v 30d086154 success 3827 3943 1911 722 19 19 170 239 305 1 7 33954 4.68017 -3551.22 -4.68017 72 33443 12 28555 17 5.25213 -4009.91 -5.25213 -0.452504 -0.0215478 1.72706e+07 1.2482e+07 1.63234e+06 4521.70 2.04538e+06 5665.88 0.21 0.07 -1 -1 -1 3.61 4.57 22.54 2.11 35.75 -1 -1 -1
-k6_frac_N10_mem32K_40nm.xml sha.v 30d086154 success 3185 3221 1285 256 18 18 182 38 36 0 0 24674 11.8757 -5758.56 -11.8757 58 22742 11 19595 16 14.3193 -6596.91 -14.3193 0 0 1.57076e+07 9.80871e+06 1.18155e+06 3646.76 1.50617e+06 4648.66 0.80 0.13 -1 -1 -1 2.69 2.85 13.10 0.75 26.55 -1 -1 -1