Skip to content

Commit 71ffc6f

Browse files
[Yosys] Cleaned Up Some Small Issues
The changes made to Yosys added a few random lines which I removed. Added some comments explaining why certain tests were turned off. Upgraded libcatch to match master since the PR would have downgraded master by mistake.
1 parent 307dc9c commit 71ffc6f

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

.github/workflows/nightly_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
matrix:
5050
include:
5151
- {test: "vtr_reg_nightly_test1", cores: "16", options: "", cmake: "", extra_pkgs: ""}
52-
- {test: "vtr_reg_nightly_test1_odin", cores: "16", options: "", cmake: "-DWITH_ODIN=ON", extra_pkgs: ""}
52+
- {test: "vtr_reg_nightly_test1_odin", cores: "16", options: "", cmake: "-DWITH_ODIN=ON", extra_pkgs: ""}
5353
- {test: "vtr_reg_nightly_test2", cores: "16", options: "", cmake: "", extra_pkgs: ""}
5454
- {test: "vtr_reg_nightly_test2_odin", cores: "16", options: "", cmake: "-DWITH_ODIN=ON", extra_pkgs: ""}
5555
- {test: "vtr_reg_nightly_test3", cores: "16", options: "", cmake: "", extra_pkgs: ""}
@@ -62,7 +62,7 @@ jobs:
6262
- {test: "vtr_reg_strong", cores: "16", options: "", cmake: "-DVTR_ASSERT_LEVEL=3", extra_pkgs: "libeigen3-dev"}
6363
- {test: "vtr_reg_strong_odin", cores: "16", options: "", cmake: "-DVTR_ASSERT_LEVEL=3 -DWITH_ODIN=ON", extra_pkgs: "libeigen3-dev"}
6464
- {test: "vtr_reg_strong_odin", cores: "16", options: "-skip_qor", cmake: "-DVTR_ASSERT_LEVEL=3 -DVTR_ENABLE_SANITIZE=ON -DWITH_ODIN=ON", extra_pkgs: "libeigen3-dev"}
65-
#- {test: "vtr_reg_system_verilog", cores: "16", options: "", cmake: "-DYOSYS_F4PGA_PLUGINS=ON", extra_pkgs: ""} Test turned off -> F4PGA conflicts with Yosys (version 42)
65+
# - {test: "vtr_reg_system_verilog", cores: "16", options: "", cmake: "-DYOSYS_F4PGA_PLUGINS=ON", extra_pkgs: ""} # Test turned off -> F4PGA conflicts with Yosys (version 42)
6666
- {test: "odin_reg_strong", cores: "16", options: "", cmake: "-DWITH_ODIN=ON", extra_pkgs: ""}
6767
- {test: "parmys_reg_strong", cores: "16", options: "", cmake: "-DYOSYS_F4PGA_PLUGINS=OFF", extra_pkgs: ""}
6868

libs/libvtrutil/src/vtr_geometry.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@ class Point {
109109
T y_;
110110
};
111111

112-
113112
/**
114113
* @brief A 2D rectangle
115114
*

vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain_predictor_off/config/config.txt

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ circuits_dir=benchmarks/verilog
99
# Path to directory of architectures to use
1010
archs_dir=arch/timing
1111

12+
# Turned off the largest circuits since they sometimes cause the runtime of this
13+
# test to take too long.
14+
# circuit_list_add=LU32PEEng.v
15+
# circuit_list_add=mcml.v
16+
1217
# Add circuits to list to sweep
1318
circuit_list_add=arm_core.v
1419
circuit_list_add=bgm.v
@@ -18,8 +23,6 @@ circuit_list_add=ch_intrinsics.v
1823
circuit_list_add=diffeq1.v
1924
circuit_list_add=diffeq2.v
2025
circuit_list_add=LU8PEEng.v
21-
#circuit_list_add=LU32PEEng.v
22-
#circuit_list_add=mcml.v
2326
circuit_list_add=mkDelayWorker32B.v
2427
circuit_list_add=mkPktMerge.v
2528
circuit_list_add=mkSMAdapter4B.v

0 commit comments

Comments
 (0)