bunch of stuff dont remember

This commit is contained in:
Richard Yan
2024-06-09 15:29:22 -07:00
parent 30bdd1efcd
commit 746811808d
4 changed files with 22 additions and 24 deletions

View File

@@ -40,35 +40,32 @@ class RadianceBaseConfig(argsBinFilename: String = "args.bin") extends Config(
new WithExtMemSize(BigInt("80000000", 16)) ++
new WithRadBootROM() ++
new WithRadROMs(0x7FFF0000L, 0x10000, s"sims/${argsBinFilename}") ++
new WithRadianceSharedMem(address = x"ff000000", size = 64 << 10, numBanks = 4, numWords = 8) ++
// new chipyard.harness.WithCeaseSuccess ++
new chipyard.iobinders.WithCeasePunchThrough ++
new radiance.subsystem.WithRadianceSimParams(true) ++
new WithCacheBlockBytes(64) ++
new freechips.rocketchip.subsystem.WithNMemoryChannels(2) ++
new freechips.rocketchip.subsystem.WithEdgeDataBits(256) ++
new AbstractConfig)
class RadianceConfig extends Config(
// important to keep gemmini tile before RadianceCores to ensure radiance tile id is 0-indexed
new radiance.subsystem.WithRadianceGemmini(location = InCluster(0), dim = 8, accSizeInKB = 16) ++
new radiance.subsystem.WithRadianceCores(1, location = InCluster(0), useVxCache = false) ++
new radiance.subsystem.WithCoalescer(nNewSrcIds = 16) ++
new radiance.subsystem.WithVortexL1Banks(nBanks = 4)++
new radiance.subsystem.WithRadianceCluster(0) ++
new RadianceBaseConfig)
class RadianceClusterConfig extends Config(
// important to keep gemmini tile before RadianceCores to ensure radiance tile id is 0-indexed
new radiance.subsystem.WithRadianceGemmini(location = InCluster(0), dim = 8, accSizeInKB = 16) ++
new radiance.subsystem.WithRadianceCores(2, location = InCluster(0),
// crossing = RocketCrossingParams(master = HierarchicalElementMasterPortParams(where = CMBUS(0))),
useVxCache = false) ++
new radiance.subsystem.WithRadianceGemmini(location = InCluster(0), dim = 8, accSizeInKB = 16, tileSize = 8) ++
new radiance.subsystem.WithRadianceCores(2, location = InCluster(0), useVxCache = false) ++
new radiance.subsystem.WithRadianceFrameBuffer(x"ff018000", 16, 0x8000, x"ff011000", "fb0") ++
new radiance.subsystem.WithRadianceSharedMem(address = x"ff000000", size = 64 << 10, numBanks = 4, numWords = 8) ++
new radiance.subsystem.WithCoalescer(nNewSrcIds = 16) ++
new radiance.subsystem.WithVortexL1Banks(nBanks = 8)++
new radiance.subsystem.WithRadianceCluster(0,
// crossing = RocketCrossingParams(master = HierarchicalElementMasterPortParams(where = MBUS))
) ++
new freechips.rocketchip.subsystem.WithNMemoryChannels(2) ++
new freechips.rocketchip.subsystem.WithEdgeDataBits(256) ++
new radiance.subsystem.WithRadianceCluster(0) ++
new RadianceBaseConfig)
class Radiance16KClusterConfig extends Config(
new radiance.subsystem.WithRadianceGemmini(location = InCluster(0), dim = 8, accSizeInKB = 4, tileSize = 4) ++
new radiance.subsystem.WithRadianceCores(2, location = InCluster(0), useVxCache = false) ++
new radiance.subsystem.WithRadianceSharedMem(address = x"ff000000", size = 16 << 10, numBanks = 4, numWords = 8) ++
new radiance.subsystem.WithCoalescer(nNewSrcIds = 16) ++
new radiance.subsystem.WithVortexL1Banks(nBanks = 8)++
new radiance.subsystem.WithRadianceCluster(0) ++
new RadianceBaseConfig)
class RadianceClusterConfig0 extends Config(

View File

@@ -1,6 +1,7 @@
import sys
PRINT_BUF = 0x4000 / 4
# PRINT_BUF = 0x4000 / 4
PRINT_BUF = 0x10000 / 4
def parse_log_file(log_file_path):
target_string = '' # Initialize the string we'll build from hex values
@@ -24,7 +25,7 @@ def parse_log_file(log_file_path):
# print(rs1_data_last_element)
for rs1, rs2, byteen in zip(rs1_data_elts, rs2_data_elts, byteen_elts):
if '0x3fc0' in rs1:
if int(rs1, 16) >> 18 == 0xff0:
offset = (int(rs1, 16) - PRINT_BUF) % 65536
if offset < 0 or offset >= 1024:
continue
@@ -89,7 +90,7 @@ def main():
sys.exit(1)
log_file_path = sys.argv[1]
if log_file_path[-4:] == "log":
if log_file_path[-4:] == ".log":
print(parse_log_file(log_file_path))
else:
print(parse_out_file(log_file_path))