示例#1
0
def SRAM():
    return cs.MemoryRegion(
        name="SRAM",
        size=10**6,
        read_bandwidth=16,
        write_bandwidth=16,
        read_latency=0,
        write_latency=0,
        burst_length=1,
    )
示例#2
0
def DRAM():
    return cs.MemoryRegion(
        name="DRAM",
        size=10**9,
        read_bandwidth=8,
        write_bandwidth=8,
        read_latency=0,
        write_latency=0,
        burst_length=1,
    )
示例#3
0
def FLASH():
    return cs.MemoryRegion(
        name="FLASH",
        size=10**7,
        read_bandwidth=4,
        write_bandwidth=4,
        read_latency=0,
        write_latency=0,
        burst_length=1,
    )
示例#4
0
文件: conftest.py 项目: zjppoet/tvm
def SRAM():
    return cs.MemoryRegion(name="SRAM", size=10 ** 6, read_bandwidth=16, write_bandwidth=16)
示例#5
0
文件: conftest.py 项目: zjppoet/tvm
def DRAM():
    return cs.MemoryRegion(name="DRAM", size=10 ** 9, read_bandwidth=8, write_bandwidth=8)
示例#6
0
文件: conftest.py 项目: zjppoet/tvm
def FLASH():
    return cs.MemoryRegion(name="FLASH", size=10 ** 7, read_bandwidth=4, write_bandwidth=4)