Increase HBM2 memory size to 2 GiB

This commit is contained in:
2024-01-06 17:41:10 +01:00
parent f524a5b1a4
commit a098b7099f
2 changed files with 2 additions and 2 deletions

View File

@@ -50,7 +50,7 @@ subprocess.run(
"-DCMAKE_BUILD_TYPE=Release", "-DCMAKE_BUILD_TYPE=Release",
f"-DSCONS_SOURCE_DIR:STRING={scons_root}", f"-DSCONS_SOURCE_DIR:STRING={scons_root}",
"-DDRAMSYS_BUILD_CLI=OFF", "-DDRAMSYS_BUILD_CLI=OFF",
"-DDRAMSYS_SHARED_PIM_UNITS=ON" "-DDRAMSYS_SHARED_PIM_UNITS=OFF"
], ],
check=True check=True
) )

View File

@@ -183,6 +183,6 @@ class DRAMSysHBM2(DRAMSysMem):
configuration=( configuration=(
DEFAULT_DRAMSYS_DIRECTORY / "configs/hbm2-example.json" DEFAULT_DRAMSYS_DIRECTORY / "configs/hbm2-example.json"
).as_posix(), ).as_posix(),
size="1GB", size="2GB",
recordable=recordable, recordable=recordable,
) )