Add failing fuzzer config; bump radiance and rocket-gpu

This commit is contained in:
Hansung Kim
2024-02-05 22:01:37 -08:00
parent ec9bc51ea7
commit 2192ce3648
3 changed files with 7 additions and 5 deletions

View File

@@ -87,11 +87,13 @@ class RadianceNoROMConfig extends Config(
class RadianceFuzzerConfig extends Config(
new radiance.subsystem.WithFuzzerCores(1, useVxCache = false) ++
new radiance.subsystem.WithCoalescer(nNewSrcIds = 4, enable = true) ++
new radiance.subsystem.WithSimtLanes(nLanes = 16, nSrcIds = 4) ++
new radiance.subsystem.WithCoalescer(nNewSrcIds = 16) ++
new radiance.subsystem.WithSimtLanes(nLanes = 4, nSrcIds = 4) ++
new chipyard.config.WithSystemBusWidth(bitWidth = 256) ++
new chipyard.harness.WithCeaseSuccess ++
new chipyard.iobinders.WithCeasePunchThrough ++
new AbstractConfig)
class RadianceOldCacheConfig extends Config(
new radiance.subsystem.WithRadianceCores(1, useVxCache = true) ++
new freechips.rocketchip.subsystem.WithCoherentBusTopology ++