WIP: disable Gemmini tile temporarily
This commit is contained in:
@@ -36,29 +36,29 @@ class WithRadBootROM(address: BigInt = 0x10000, size: Int = 0x10000, hang: BigIn
|
|||||||
class RadianceBaseConfig(argsBinFilename: String = "args.bin") extends Config(
|
class RadianceBaseConfig(argsBinFilename: String = "args.bin") extends Config(
|
||||||
// NOTE: when changing these, remember to change +define+NUM_CORES/THREADS/WARPS in
|
// NOTE: when changing these, remember to change +define+NUM_CORES/THREADS/WARPS in
|
||||||
// radiance.mk as well!
|
// radiance.mk as well!
|
||||||
new radiance.subsystem.WithSimtConfig(nWarps = 8, nCoreLanes = 8, nMemLanes = 8, nSrcIds = 8) ++
|
new radiance.subsystem.WithSimtConfig(nWarps = 8, nCoreLanes = 8, nMemLanes = 8, nSrcIds = 16) ++
|
||||||
new chipyard.config.WithSystemBusWidth(bitWidth = 256) ++
|
new chipyard.config.WithSystemBusWidth(bitWidth = 256) ++
|
||||||
new WithExtMemSize(BigInt("80000000", 16)) ++
|
new WithExtMemSize(BigInt("80000000", 16)) ++
|
||||||
new WithRadBootROM() ++
|
new WithRadBootROM() ++
|
||||||
new WithRadROMs(0x7FFF0000L, 0x10000, s"sims/${argsBinFilename}") ++
|
new WithRadROMs(0x7FFF0000L, 0x10000, s"sims/${argsBinFilename}") ++
|
||||||
new WithRadROMs(0x20000L, 0x8000, "sims/op_a.bin") ++
|
new WithRadROMs(0x20000L, 0x20000, "sims/op_a.bin") ++
|
||||||
new WithRadROMs(0x28000L, 0x8000, "sims/op_b.bin") ++
|
new WithRadROMs(0x40000L, 0x20000, "sims/op_b.bin") ++
|
||||||
new chipyard.harness.WithCeaseSuccess ++
|
new chipyard.harness.WithCeaseSuccess ++
|
||||||
new chipyard.iobinders.WithCeasePunchThrough ++
|
new chipyard.iobinders.WithCeasePunchThrough ++
|
||||||
new AbstractConfig)
|
new AbstractConfig)
|
||||||
|
|
||||||
class RadianceConfig extends Config(
|
class RadianceConfig extends Config(
|
||||||
// important to keep gemmini tile before RadianceCores to ensure radiance tile id is 0-indexed
|
// important to keep gemmini tile before RadianceCores to ensure radiance tile id is 0-indexed
|
||||||
new WithRadianceGemmini(location = InCluster(0), dim = 8, extMemBase = x"ff000000", spSizeInKB = 16, accSizeInKB = 8) ++
|
// new WithRadianceGemmini(location = InCluster(0), dim = 8, extMemBase = x"ff000000", spSizeInKB = 16, accSizeInKB = 8) ++
|
||||||
new radiance.subsystem.WithRadianceCores(1, location=InCluster(0), useVxCache = false) ++
|
new radiance.subsystem.WithRadianceCores(1, location=InCluster(0), useVxCache = false) ++
|
||||||
new radiance.subsystem.WithCoalescer(nNewSrcIds = 8) ++
|
new radiance.subsystem.WithCoalescer(nNewSrcIds = 16) ++
|
||||||
new radiance.subsystem.WithVortexL1Banks(nBanks = 4)++
|
new radiance.subsystem.WithVortexL1Banks(nBanks = 4)++
|
||||||
new radiance.subsystem.WithRadianceCluster(0) ++
|
new radiance.subsystem.WithRadianceCluster(0) ++
|
||||||
new RadianceBaseConfig)
|
new RadianceBaseConfig)
|
||||||
|
|
||||||
class RadianceClusterConfig extends Config(
|
class RadianceClusterConfig extends Config(
|
||||||
// important to keep gemmini tile before RadianceCores to ensure radiance tile id is 0-indexed
|
// important to keep gemmini tile before RadianceCores to ensure radiance tile id is 0-indexed
|
||||||
new WithRadianceGemmini(location = InCluster(0), dim = 8, extMemBase = x"ff000000", spSizeInKB = 16, accSizeInKB = 8) ++
|
// new WithRadianceGemmini(location = InCluster(0), dim = 8, extMemBase = x"ff000000", spSizeInKB = 16, accSizeInKB = 8) ++
|
||||||
new radiance.subsystem.WithRadianceCores(2, location=InCluster(0), useVxCache = false) ++
|
new radiance.subsystem.WithRadianceCores(2, location=InCluster(0), useVxCache = false) ++
|
||||||
new radiance.subsystem.WithCoalescer(nNewSrcIds = 8) ++
|
new radiance.subsystem.WithCoalescer(nNewSrcIds = 8) ++
|
||||||
new radiance.subsystem.WithVortexL1Banks(nBanks = 8)++
|
new radiance.subsystem.WithVortexL1Banks(nBanks = 8)++
|
||||||
|
|||||||
Reference in New Issue
Block a user