From 280a0b5f662b46ab136139677e2c17c318fea109 Mon Sep 17 00:00:00 2001 From: Lukas Steiner Date: Fri, 2 Oct 2020 16:28:05 +0200 Subject: [PATCH] Set ddr5 example as default. --- DRAMSys/library/resources/simulations/ddr5-example.json | 4 ++-- DRAMSys/simulator/main.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/DRAMSys/library/resources/simulations/ddr5-example.json b/DRAMSys/library/resources/simulations/ddr5-example.json index 8b66eaa6..e85d1b92 100644 --- a/DRAMSys/library/resources/simulations/ddr5-example.json +++ b/DRAMSys/library/resources/simulations/ddr5-example.json @@ -1,8 +1,8 @@ { "simulation": { - "addressmapping": "am_ddr5_2x4x1Gbx8_dimm_p1KB_rbc.json", + "addressmapping": "am_ddr5_2x8x2Gbx4_dimm_p1KB_rbc.json", "mcconfig": "fr_fcfs.json", - "memspec": "JEDEC_2x4x1Gbx8_DDR5-3200A.json", + "memspec": "JEDEC_2x8x2Gbx4_DDR5-3200A.json", "simconfig": "ddr5.json", "simulationid": "ddr5-example", "thermalconfig": "config.json", diff --git a/DRAMSys/simulator/main.cpp b/DRAMSys/simulator/main.cpp index 7d29c614..f352ce25 100644 --- a/DRAMSys/simulator/main.cpp +++ b/DRAMSys/simulator/main.cpp @@ -74,7 +74,7 @@ int sc_main(int argc, char **argv) // Get path of resources: resources = pathOfFile(argv[0]) + std::string("/../../DRAMSys/library/resources/"); - simulationJson = resources + "simulations/ddr3-example.json"; + simulationJson = resources + "simulations/ddr5-example.json"; } // Run with specific config but default resource folders: else if (argc == 2) {