Searched refs:period (Results 26 - 36 of 36) sorted by relevance

12

/gem5/ext/drampower/src/
H A DMemoryPowerModel.h228 double calcIoTermEnergy(int64_t cycles, double period, double power, int64_t numBits) const;
H A DMemoryPowerModel.cc145 // Size of one clock period for the data bus.
600 double MemoryPowerModel::calcIoTermEnergy(int64_t cycles, double period, double power, int64_t numBits) const argument
602 return static_cast<double>(cycles) * period * power * static_cast<double>(numBits);
/gem5/src/cpu/kvm/
H A Dtimer.cc176 hwOverflow.period(hostCycles(ticks));
H A Dbase.cc1305 // need to set some non-zero sample period that gets
1363 BaseKvmCPU::setupInstCounter(uint64_t period) argument
1366 // time or the period isn't changing.
1367 if (period == activeInstPeriod && hwInstructions.attached())
1379 if (period) {
1382 .samplePeriod(period);
1386 // sampling settings. See PerfKvmCounter::period() for details.
1394 if (period)
1397 activeInstPeriod = period;
H A Dbase.hh733 * @param period Signal period, set to 0 to disable signaling.
735 void setupInstCounter(uint64_t period = 0);
/gem5/configs/common/
H A DSimulation.py233 when, period = options.take_checkpoints.split(",", 1)
235 period = int(period)
253 if (sim_ticks + period) > maxtick:
258 exit_event = m5.simulate(period)
260 sim_ticks += period
363 # (when warmup period longer than starting point)
477 # simulation period
566 # warmup period
570 # simulation period
[all...]
/gem5/src/dev/net/
H A Ddist_iface.cc824 DistIface::readyToCkpt(Tick delay, Tick period) argument
828 "period:%lu\n", delay, period);
839 if (period != 0)
840 inform("Non-zero period for m5_ckpt is ignored in "
H A Ddist_iface.hh630 static bool readyToCkpt(Tick delay, Tick period);
/gem5/src/dev/arm/
H A Dgeneric_timer.cc134 const auto period(_systemCounter.period());
136 curTick() + (_counterLimit - value()) * period);
H A Dgeneric_timer.hh67 /// Cached copy of the counter period (inverse of the frequency).
94 /// Returns the counter period.
95 Tick period() const { return _period; } function in class:SystemCounter
/gem5/src/python/m5/
H A Dparams.py1574 if attr in ('latency', 'period'):
1618 if attr in ('latency', 'period'):
1663 if attr in ('latency', 'period'):
1668 return self.period.getValue()
1671 return self.period.config_value()
1674 return self.period.ini_str()

Completed in 37 milliseconds

12