From 28b2fee54cc7795faebcfe1876fcc2fbfa24a073 Mon Sep 17 00:00:00 2001 From: Lukas Steiner Date: Tue, 9 Feb 2021 15:08:27 +0100 Subject: [PATCH] Fix wrong standard display. --- DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp | 2 +- DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp | 2 +- DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp b/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp index 29e5fb5c..a046a7d7 100644 --- a/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp +++ b/DRAMSys/library/src/configuration/memspec/MemSpecLPDDR4.cpp @@ -155,7 +155,7 @@ uint64_t MemSpecLPDDR4::getSimMemSizeInBytes() const std::cout << headline << std::endl; std::cout << "Per Channel Configuration:" << std::endl << std::endl; - std::cout << " Memory type: " << "GDDR5" << std::endl; + std::cout << " Memory type: " << "LPDDR4" << std::endl; std::cout << " Memory size in bytes: " << memorySizeBytes << std::endl; std::cout << " Ranks: " << numberOfRanks << std::endl; std::cout << " Banks per rank: " << banksPerRank << std::endl; diff --git a/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp b/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp index 36ff96ea..91f9f1c8 100644 --- a/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp +++ b/DRAMSys/library/src/configuration/memspec/MemSpecWideIO.cpp @@ -147,7 +147,7 @@ uint64_t MemSpecWideIO::getSimMemSizeInBytes() const std::cout << headline << std::endl; std::cout << "Per Channel Configuration:" << std::endl << std::endl; - std::cout << " Memory type: " << "GDDR5" << std::endl; + std::cout << " Memory type: " << "Wide I/O" << std::endl; std::cout << " Memory size in bytes: " << memorySizeBytes << std::endl; std::cout << " Ranks: " << numberOfRanks << std::endl; std::cout << " Banks per rank: " << banksPerRank << std::endl; diff --git a/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp b/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp index 1678d2d5..2b93a0cc 100644 --- a/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp +++ b/DRAMSys/library/src/configuration/memspec/MemSpecWideIO2.cpp @@ -138,7 +138,7 @@ uint64_t MemSpecWideIO2::getSimMemSizeInBytes() const std::cout << headline << std::endl; std::cout << "Per Channel Configuration:" << std::endl << std::endl; - std::cout << " Memory type: " << "GDDR5" << std::endl; + std::cout << " Memory type: " << "Wide I/O 2" << std::endl; std::cout << " Memory size in bytes: " << memorySizeBytes << std::endl; std::cout << " Ranks: " << numberOfRanks << std::endl; std::cout << " Banks per rank: " << banksPerRank << std::endl;