gem5 v24.0.0.0
Loading...
Searching...
No Matches
mathexpr_powermodel.cc
Go to the documentation of this file.
1/*
2 * Copyright (c) 2016-2017, 2020-2021 Arm Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software
9 * licensed hereunder. You may use the software subject to the license
10 * terms below provided that you ensure that this notice is replicated
11 * unmodified and in its entirety in all distributions of the software,
12 * modified or unmodified, in source code or in binary form.
13 *
14 * Redistribution and use in source and binary forms, with or without
15 * modification, are permitted provided that the following conditions are
16 * met: redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer;
18 * redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution;
21 * neither the name of the copyright holders nor the names of its
22 * contributors may be used to endorse or promote products derived from
23 * this software without specific prior written permission.
24 *
25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 */
37
39
40#include <string>
41
42#include "base/statistics.hh"
43#include "params/MathExprPowerModel.hh"
44#include "sim/mathexpr.hh"
46#include "sim/sim_object.hh"
47
48namespace gem5
49{
50
52 : PowerModelState(p), dyn_expr(p.dyn), st_expr(p.st)
53{
54}
55
56void
58{
59 for (auto expr: {dyn_expr, st_expr}) {
60 std::vector<std::string> vars = expr.getVariables();
61
62 for (auto var: vars) {
63 // Automatic variables:
64 if (var == "temp" || var == "voltage" || var == "clock_period") {
65 continue;
66 }
67
68 auto *info = statistics::resolve(var);
69 fatal_if(!info, "Failed to evaluate %s in expression:\n%s\n",
70 var, expr.toStr());
71 statsMap[var] = info;
72 }
73 }
74}
75
76double
78{
79 return expr.eval(
81 this, std::placeholders::_1)
82 );
83}
84
85double
86MathExprPowerModel::getStatValue(const std::string &name) const
87{
88 using namespace statistics;
89
90 // Automatic variables:
91 if (name == "temp") {
92 return _temp.toCelsius();
93 } else if (name == "voltage") {
94 return clocked_object->voltage();
95 } else if (name=="clock_period") {
97 }
98
99 const auto it = statsMap.find(name);
100 assert(it != statsMap.cend());
101 const Info *info = it->second;
102
103 // Try to cast the stat, only these are supported right now
104 auto si = dynamic_cast<const ScalarInfo *>(info);
105 if (si)
106 return si->value();
107 auto fi = dynamic_cast<const FormulaInfo *>(info);
108 if (fi)
109 return fi->total();
110
111 panic("Unknown stat type!\n");
112}
113
114void
119
120} // namespace gem5
Tick clockPeriod() const
double voltage() const
MathExprPowerModelParams Params
double getStatValue(const std::string &name) const
Get the value for a variable (maps to a stat)
double eval(const MathExpr &expr) const
Evaluate an expression in the context of this object, fatal if evaluation fails.
MathExprPowerModel(const Params &p)
std::unordered_map< std::string, const statistics::Info * > statsMap
void startup() override
startup() is the final initialization call before simulation.
void regStats() override
Callback to set stat parameters.
double eval(EvalCallback fn) const
Evaluates the expression.
Definition mathexpr.hh:72
virtual std::string name() const
Definition named.hh:47
A PowerModelState is an abstract class used as interface to get power figures out of SimObjects.
Temperature _temp
Current temperature.
ClockedObject * clocked_object
The clocked object we belong to.
constexpr double toCelsius() const
virtual Counter value() const =0
virtual Result total() const =0
STL vector class.
Definition stl.hh:37
#define panic(...)
This implements a cprintf based panic() function.
Definition logging.hh:188
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
Definition logging.hh:236
virtual void regStats()
Callback to set stat parameters.
Definition group.cc:68
Bitfield< 21 > fi
Bitfield< 6 > si
Bitfield< 31, 28 > st
Bitfield< 0 > p
const Info * resolve(const std::string &name)
Copyright (c) 2024 - Pranith Kumar Copyright (c) 2020 Inria All rights reserved.
Definition binary32.hh:36
Declaration of Statistics objects.
const std::string & name()
Definition trace.cc:48

Generated on Tue Jun 18 2024 16:24:06 for gem5 by doxygen 1.11.0