add radiance submodule

This commit is contained in:
Richard Yan
2024-01-17 10:24:06 -08:00
parent c9880c7086
commit 5ed1f0a4d5
2 changed files with 8 additions and 3 deletions

2
.gitmodules vendored
View File

@@ -1,6 +1,6 @@
[submodule "rocket-chip"]
path = generators/rocket-chip
url = https://github.com/hansungk/rocket-chip.git
url = https://github.com/chipsalliance/rocket-chip.git
[submodule "testchipip"]
path = generators/testchipip
url = https://github.com/richardyrh/testchipip.git

View File

@@ -150,7 +150,7 @@ lazy val chipyard = (project in file("generators/chipyard"))
radiance,
sha3, // On separate line to allow for cleaner tutorial-setup patches
dsptools, rocket_dsp_utils,
gemmini, icenet, tracegen, cva6, nvdla, sodor, ibex, fft_generator,
gemmini, icenet, tracegen, cva6, nvdla, radiance, sodor, ibex, fft_generator,
constellation, mempress, barf, shuttle, caliptra_aes)
.settings(libraryDependencies ++= rocketLibDeps.value)
.settings(
@@ -250,6 +250,11 @@ lazy val rocc_acc_utils = (project in file("generators/rocc-acc-utils"))
.settings(libraryDependencies ++= rocketLibDeps.value)
.settings(commonSettings)
lazy val radiance = (project in file("generators/radiance"))
.dependsOn(rocketchip)
.settings(libraryDependencies ++= rocketLibDeps.value)
.settings(commonSettings)
lazy val iocell = Project(id = "iocell", base = file("./tools/barstools/") / "iocell")
.settings(chiselSettings)
.settings(commonSettings)
@@ -258,7 +263,7 @@ lazy val tapeout = (project in file("./tools/barstools/"))
.settings(chiselSettings)
.settings(commonSettings)
lazy val fixedpoint = (project in file("./tools/fixedpoint/"))
lazy val fixedpoint = (project in file("./tools/dsptools/fixedpoint/"))
.settings(chiselSettings)
.settings(commonSettings)