summaryrefslogtreecommitdiff
path: root/ext/drampower/src/MemoryPowerModel.h
diff options
context:
space:
mode:
authorRadhika Jagtap <radhika.jagtap@arm.com>2016-12-19 10:32:40 +0000
committerAndreas Sandberg <andreas.sandberg@arm.com>2017-11-16 16:39:19 +0000
commit290a7e7c5c059c1309ca3d02ea3158e2ca9ac338 (patch)
treef04a5c7aa0f5247d467e1bb8b2139d0e11baf532 /ext/drampower/src/MemoryPowerModel.h
parent0757bef15d934b22555c396bcbcb91c0a1dffbe5 (diff)
downloadgem5-290a7e7c5c059c1309ca3d02ea3158e2ca9ac338.tar.xz
ext, mem: Pull DRAMPower SHA 90d6290 and rebase
This patch syncs the DRAMPower library of gem5 to the external github (https://github.com/ravenrd/DRAMPower). The version pulled in is the commit: 90d6290f802c29b3de9e10233ceee22290907ce6 from 30th Oct. 2016. This change also modifies the DRAM Ctrl interaction with the DRAMPower, due to changes in the lib API in the above version. Previously multiple functions were called to prepare the power lib before calling the function that would calculate the enery. With the new API, these functions are encompassed inside the function to calculate the energy and therefore should now be removed from the DRAM controller. The other key difference is the introduction of a new function called calcWindowEnergy which can be useful for any system that wants to do measurements over intervals. For gem5 DRAM ctrl that means we now need to accumulate the window energy measurements into the total stat. Change-Id: I3570fff2805962e166ff2a1a3217ebf2d5a197fb Reviewed-by: Nikos Nikoleris <nikos.nikoleris@arm.com> Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com> Reviewed-on: https://gem5-review.googlesource.com/5724 Maintainer: Nikos Nikoleris <nikos.nikoleris@arm.com> Maintainer: Andreas Sandberg <andreas.sandberg@arm.com>
Diffstat (limited to 'ext/drampower/src/MemoryPowerModel.h')
-rw-r--r--ext/drampower/src/MemoryPowerModel.h80
1 files changed, 76 insertions, 4 deletions
diff --git a/ext/drampower/src/MemoryPowerModel.h b/ext/drampower/src/MemoryPowerModel.h
index 2b2304989..916d540a8 100644
--- a/ext/drampower/src/MemoryPowerModel.h
+++ b/ext/drampower/src/MemoryPowerModel.h
@@ -31,98 +31,163 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * Authors: Karthik Chandrasekar, Matthias Jung, Omar Naji
+ * Authors: Karthik Chandrasekar
+ * Matthias Jung
+ * Omar Naji
+ * Subash Kannoth
+ * Éder F. Zulian
+ * Felipe S. Prado
*
*/
#ifndef MEMORY_POWER_MODEL_H
#define MEMORY_POWER_MODEL_H
+#include <numeric>
#include "MemorySpecification.h"
+#include "MemBankWiseParams.h"
#include "CommandAnalysis.h"
namespace Data {
class MemoryPowerModel {
public:
+
+ MemoryPowerModel();
+
// Calculate energy and average power consumption for the given memory
// command trace
void power_calc(const MemorySpecification& memSpec,
const CommandAnalysis& c,
- int term);
+ int term,
+ const MemBankWiseParams& bwPowerParams);
// Used to calculate self-refresh active energy
static double engy_sref(double idd6,
double idd3n,
double idd5,
double vdd,
- double sref_cycles,
+ double sref_cycles_idd6,
double sref_ref_act_cycles,
double sref_ref_pre_cycles,
double spup_ref_act_cycles,
double spup_ref_pre_cycles,
double clk);
+ static double engy_sref_banks(double idd6,
+ double idd3n,
+ double idd5,
+ double vdd,
+ double sref_cycles,
+ double sref_ref_act_cycles,
+ double sref_ref_pre_cycles,
+ double spup_ref_act_cycles,
+ double spup_ref_pre_cycles,
+ double clk,
+ double esharedPASR,
+ const MemBankWiseParams& bwPowerParams,
+ unsigned bnkIdx,
+ int64_t nbrofBanks);
int64_t total_cycles;
+ int64_t window_cycles;
+
struct Energy {
// Total energy of all activates
double act_energy;
+ std::vector<double> act_energy_banks;
// Total energy of all precharges
double pre_energy;
+ std::vector<double> pre_energy_banks;
// Total energy of all reads
double read_energy;
+ std::vector<double> read_energy_banks;
// Total energy of all writes
double write_energy;
+ std::vector<double> write_energy_banks;
// Total energy of all refreshes
double ref_energy;
+ std::vector<double> ref_energy_banks;
+
+ // Bankwise refresh energy
+ std::vector<double> refb_energy_banks;
// Total background energy of all active standby cycles
double act_stdby_energy;
+ std::vector<double> act_stdby_energy_banks;
// Total background energy of all precharge standby cycles
double pre_stdby_energy;
+ std::vector<double> pre_stdby_energy_banks;
// Total energy of idle cycles in the active mode
double idle_energy_act;
+ std::vector<double> idle_energy_act_banks;
// Total energy of idle cycles in the precharge mode
double idle_energy_pre;
+ std::vector<double> idle_energy_pre_banks;
// Total trace/pattern energy
double total_energy;
+ std::vector<double> total_energy_banks;
+
+ // Window energy
+ double window_energy;
// Average Power
double average_power;
// Energy consumed in active/precharged fast/slow-exit modes
double f_act_pd_energy;
+ std::vector<double> f_act_pd_energy_banks;
+
double f_pre_pd_energy;
+ std::vector<double> f_pre_pd_energy_banks;
+
double s_act_pd_energy;
+ std::vector<double> s_act_pd_energy_banks;
+
double s_pre_pd_energy;
+ std::vector<double> s_pre_pd_energy_banks;
// Energy consumed in self-refresh mode
double sref_energy;
+ std::vector<double> sref_energy_banks;
// Energy consumed in auto-refresh during self-refresh mode
double sref_ref_energy;
+ std::vector<double> sref_ref_energy_banks;
+
double sref_ref_act_energy;
+ std::vector<double> sref_ref_act_energy_banks;
+
double sref_ref_pre_energy;
+ std::vector<double> sref_ref_pre_energy_banks;
// Energy consumed in powering-up from self-refresh mode
double spup_energy;
+ std::vector<double> spup_energy_banks;
// Energy consumed in auto-refresh during self-refresh power-up
double spup_ref_energy;
+ std::vector<double> spup_ref_energy_banks;
+
double spup_ref_act_energy;
+ std::vector<double> spup_ref_act_energy_banks;
+
double spup_ref_pre_energy;
+ std::vector<double> spup_ref_pre_energy_banks;
// Energy consumed in powering-up from active/precharged power-down modes
double pup_act_energy;
+ std::vector<double> pup_act_energy_banks;
+
double pup_pre_energy;
+ std::vector<double> pup_pre_energy_banks;
// Energy consumed by IO and Termination
double read_io_energy; // Read IO Energy
@@ -142,12 +207,16 @@ class MemoryPowerModel {
// Average Power
double average_power;
+
+ // Window Average Power
+ double window_average_power;
};
// Print the power and energy
void power_print(const MemorySpecification& memSpec,
int term,
- const CommandAnalysis& c) const;
+ const CommandAnalysis& c,
+ bool bankwiseMode) const;
// To derive IO and Termination Power measures using DRAM specification
void io_term_power(const MemorySpecification& memSpec);
@@ -157,6 +226,8 @@ class MemoryPowerModel {
private:
double calcIoTermEnergy(int64_t cycles, double period, double power, int64_t numBits) const;
+ // Sum quantities (e.g., operations, energy, cycles) that are stored in a per bank basis returning the total amount.
+ template <typename T> T sum(const std::vector<T> vec) const { return std::accumulate(vec.begin(), vec.end(), static_cast<T>(0)); }
};
class EnergyDomain {
@@ -167,6 +238,7 @@ class EnergyDomain {
{}
double calcTivEnergy(int64_t cycles, double current) const;
+ double getVoltage() const{ return voltage; };
private:
const double voltage;
const double clkPeriod;